sunga25 commited on
Commit
ec85d94
1 Parent(s): c683e69

Create .replit

Browse files
Files changed (1) hide show
  1. .replit +15 -0
.replit ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ entrypoint = "main.py"
2
+ modules = ["python-3.11"]
3
+
4
+ [nix]
5
+ channel = "stable-24_05"
6
+
7
+ [unitTest]
8
+ language = "python3"
9
+
10
+ [gitHubImport]
11
+ requiredFiles = [".replit", "replit.nix"]
12
+
13
+ [deployment]
14
+ run = ["python3", "main.py"]
15
+ deploymentTarget = "cloudrun"