Skip to content

Commit

Permalink
Update run.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sondregronas committed Aug 22, 2024
1 parent 8f10d07 commit d7e90e5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions run.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import os
import subprocess

from piggy.app import create_app


Expand All @@ -22,9 +23,8 @@ def checkout_branch(branch):

if __name__ == "__main__":
# checkout_branch("test-output")
os.environ["FLASK_DEBUG"] = "1"
os.environ["USE_CACHE"] = "0"
os.environ["SERVER_NAME"] = "localhost:5001"
os.environ["FLASK_DEBUG"] = "0"
os.environ["USE_CACHE"] = "1"
app = create_app()
app.config["TEMPLATES_AUTO_RELOAD"] = True
run_tailwind(reload=True)
Expand Down

0 comments on commit d7e90e5

Please sign in to comment.