Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ayoubm490/tickets
Simple Flask Ticket Tracking app with API using jsonify
https://github.com/ayoubm490/tickets
Last synced: 12 days ago
JSON representation
Simple Flask Ticket Tracking app with API using jsonify
- Host: GitHub
- URL: https://github.com/ayoubm490/tickets
- Owner: AyoubM490
- Created: 2023-07-14T11:14:58.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-14T12:15:40.000Z (over 1 year ago)
- Last Synced: 2024-12-04T18:53:52.539Z (about 2 months ago)
- Language: Python
- Homepage:
- Size: 377 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
python-flask-tickets
========# Setup
This is a simple ticket-tracking flask application with a JSON API## Create Python 3.7 virtual environment
```
cd python-flask-tickets
pipenv --python python3.7 install flask python-dotenv psycopg2-binary Flask-SQLAlchemy Flask-Migrate
pipenv shell
mkdir templates static
touch {templates,static}/.gitkeep
vi config.py
vi models.py
vi __init__.py
```