Skip to content

Commit

Permalink
Add test deploy servers
Browse files Browse the repository at this point in the history
  • Loading branch information
passiomatic committed Jul 18, 2023
1 parent f7e6a93 commit 74e12ee
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,14 @@ upload-test:
clean:
rm -rf dist/ build/ .parcel-cache/

# Test deploy servers

run-gunicorn:
gunicorn -w 8 'coldsweat:create_app()' --bind 127.0.0.1:5000

run-waitress:
waitress-serve --host 127.0.0.1 --port 5000 --threads=8 --call coldsweat:create_app

# Database

sql:
Expand Down

0 comments on commit 74e12ee

Please sign in to comment.