https://github.com/saikatbhuiyan/flask-store-api
This is a Store App API using Python Flask.
https://github.com/saikatbhuiyan/flask-store-api
flask python
Last synced: 12 months ago
JSON representation
This is a Store App API using Python Flask.
- Host: GitHub
- URL: https://github.com/saikatbhuiyan/flask-store-api
- Owner: saikatbhuiyan
- Created: 2020-10-20T10:11:14.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-05-27T18:12:44.000Z (about 5 years ago)
- Last Synced: 2025-04-11T17:00:03.351Z (about 1 year ago)
- Topics: flask, python
- Language: Python
- Homepage:
- Size: 84 KB
- Stars: 7
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Security: security.py
Awesome Lists containing this project
README
# Store App
## Features
- User Login, Registration, JWT TOKEN Auth
- CURD Store
- CURD Store Items
### Project setup
```
mkdir store
cd store
python -m venv venv
source venv/bin/activate
.\venv\Scripts\activate.bat (Windows)
git clone git_url
cd store-api-flask
run flask db init
run flask db migrate
run flask db upgrade
python app.py
```