https://github.com/rinminase/flask-test-app
https://github.com/rinminase/flask-test-app
flask python rest-api
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rinminase/flask-test-app
- Owner: RinMinase
- Created: 2022-01-04T01:36:22.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-04T08:07:10.000Z (over 4 years ago)
- Last Synced: 2025-06-30T21:26:24.880Z (about 1 year ago)
- Topics: flask, python, rest-api
- Language: Python
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Flask Test Application
## Introduction
## Running the Application
1. Clone the repository, then open your python terminal
2. _(optional)_ Setup your virtual ENV
3. Install the dependencies
```
pip install -r requirements.txt
```
4. _(on Windows)_ Run the Web Server
```
waitress-serve --listen=*:8000 wsgi:app
```
4. _(on Linux/Mac)_ Run the Web Server
```
gunicorn --bind 0.0.0.0:8000 wsgi:app
```