Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/exu3/flask-todo
todo crud app made with python/flask
https://github.com/exu3/flask-todo
Last synced: 24 days ago
JSON representation
todo crud app made with python/flask
- Host: GitHub
- URL: https://github.com/exu3/flask-todo
- Owner: exu3
- Created: 2021-06-16T01:31:41.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-06-16T01:38:11.000Z (over 3 years ago)
- Last Synced: 2024-10-27T23:48:32.050Z (2 months ago)
- Language: HTML
- Homepage: https://arcane-lowlands-59018.herokuapp.com
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FlaskIntroduction
This repo has been updated to work with `Python v3.8` and up.
### How To Run
1. Install `virtualenv`:
```
$ pip install virtualenv
```2. Open a terminal in the project root directory and run:
```
$ virtualenv env
```3. Then run the command:
```
$ .\env\Scripts\activate
```4. Then install the dependencies:
```
$ (env) pip install -r requirements.txt
```5. Finally start the web server:
```
$ (env) python app.py
```This server will start on port 5000 by default. You can change this in `app.py` by changing the following line to this:
```python
if __name__ == "__main__":
app.run(debug=True, port=)
```