flask-crud-app is a simple application flask to implement CRUD.
- Clone project
git clone https://github.com/flavien-hugs/flask-crud-app.git
cd flask-crud-app
- Initialzed database
make db
or
FLASK_APP=run.py flask init_db
- Activate the virtual environment and install the dependencies with the command
make install
or
pipenv install
pipenv shell
Finally, start the internal flask server with
python run.py
Navigate to
<http://localhost:5000>
Good code :)