https://github.com/flavien-hugs/flask-crud-app
Simple CRUD application with flask
https://github.com/flavien-hugs/flask-crud-app
flask-app flask-crud flask-sqlalchemy flask-web
Last synced: 6 months ago
JSON representation
Simple CRUD application with flask
- Host: GitHub
- URL: https://github.com/flavien-hugs/flask-crud-app
- Owner: flavien-hugs
- Created: 2022-07-09T13:30:07.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-10T20:37:02.000Z (about 3 years ago)
- Last Synced: 2025-02-03T13:44:16.145Z (8 months ago)
- Topics: flask-app, flask-crud, flask-sqlalchemy, flask-web
- Language: HTML
- Homepage: https://unstaflask.herokuapp.com/
- Size: 130 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flask CRUD (CREATE - READ - UPDATE - DELETE) APP
[](https://www.djangoproject.com)
[](https://www.python.com)
[flask-crud-app](https://github.com/flavien-hugs/flask-crud-app/) is a simple application flask to implement CRUD.
#### Installation & Execution of the project locally
* 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
``````
Good code :)