https://github.com/oki-aryawan/flask-todo-apps
Todos app with Flask
https://github.com/oki-aryawan/flask-todo-apps
flask jinja2 semantic-ui sqlalchemy
Last synced: over 1 year ago
JSON representation
Todos app with Flask
- Host: GitHub
- URL: https://github.com/oki-aryawan/flask-todo-apps
- Owner: oki-aryawan
- Created: 2022-05-06T00:26:22.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-05-18T00:19:19.000Z (about 4 years ago)
- Last Synced: 2025-01-21T19:36:50.464Z (over 1 year ago)
- Topics: flask, jinja2, semantic-ui, sqlalchemy
- Language: HTML
- Homepage:
- Size: 35.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Todo App with Flask
This project originaly form https://github.com/python-engineer/flask-todo
## Techstack
- [Flask](https://flask.palletsprojects.com/en/2.1.x/)
- [SQLite](https://www.sqlite.org/)
- [Semantic-UI](https://semantic-ui.com/)
## Instalation
- Clone repository
```
git clone git@github.com:oki-aryawan/todo-app-flask.git
```
- Create virtual environment
```
mkdir myproject
cd myproject
python3 -m venv venv
```
- Install requirements
```
pip install -r requirements.txt
```
- Run the flask server
```
flask run
```