Helenbaclayon Bacalso commited on
Commit ·
bd100ec
1
Parent(s): 0b0c828
Fix python -> python3
Browse files
.replit
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
entrypoint = "main.py"
|
| 2 |
-
run = "pip install -r requirements.txt &&
|
| 3 |
modules = ["python-3.11"]
|
| 4 |
|
| 5 |
[nix]
|
| 6 |
channel = "stable-25_05"
|
| 7 |
|
| 8 |
[deployment]
|
| 9 |
-
run = ["
|
|
|
|
| 1 |
entrypoint = "main.py"
|
| 2 |
+
run = "pip install -r requirements.txt && python3 main.py"
|
| 3 |
modules = ["python-3.11"]
|
| 4 |
|
| 5 |
[nix]
|
| 6 |
channel = "stable-25_05"
|
| 7 |
|
| 8 |
[deployment]
|
| 9 |
+
run = ["python3", "main.py"]
|