Skip to content

Commit

Permalink
added replit config
Browse files Browse the repository at this point in the history
  • Loading branch information
Snickdx committed Jun 18, 2024
1 parent 18f238d commit cb91875
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__pycache__/*
14 changes: 10 additions & 4 deletions .replit
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
entrypoint = "main.py"
modules = ["python-3.8:v2-20230907-3d66d15"]
modules = ["web", "python-3.8", "nix"]

hidden = [".pythonlibs"]
run = "flask run -h 0.0.0.0 -p 8080 --reload"

[nix]
channel = "stable-23_05"
channel = "stable-23_11"

[env]
LANG = "en_US.UTF-8"

[[ports]]
localPort = 8080
localPort = 5000
externalPort = 80
exposeLocalhost = true

[[ports]]
localPort = 8080

[deployment]
run = ["sh", "-c", "flask run -h 0.0.0.0 -p 8080 --reload"]

0 comments on commit cb91875

Please sign in to comment.