Create .replit
Browse files
.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"
|