https://github.com/syedabutalib/hacktober2018
Hacktober Competition, hosted by T-Mobile
https://github.com/syedabutalib/hacktober2018
Last synced: 2 months ago
JSON representation
Hacktober Competition, hosted by T-Mobile
- Host: GitHub
- URL: https://github.com/syedabutalib/hacktober2018
- Owner: SyedAbuTalib
- Created: 2018-10-27T19:59:26.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-28T14:48:37.000Z (over 6 years ago)
- Last Synced: 2025-02-08T07:42:11.087Z (4 months ago)
- Language: Python
- Homepage:
- Size: 1.74 MB
- Stars: 0
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# flask-rest-crud
Basic REST CRUD using FlaskRequirements :
Either
- Vagrant (```vagrant up``` at the root of the project)
or
- Python and pip (and ```pip install requirements.txt``` )
- A database up and running
- Setting up the file config.py (you may need to install a specific driver depending on the DB. For MySQL, pymysql is already available in the requirements.txt )running :
```
export PROJECT_CONFIG=developmentpython manage.py create_db
python manage.py runserver
on vagrant :
python3 manage.py runserver -h 0.0.0.0
```