https://github.com/surajv311/flask_basics
Learned flask basics (CRUD) to dive deep into Python dev ecosystem.
https://github.com/surajv311/flask_basics
Last synced: 7 months ago
JSON representation
Learned flask basics (CRUD) to dive deep into Python dev ecosystem.
- Host: GitHub
- URL: https://github.com/surajv311/flask_basics
- Owner: Surajv311
- Created: 2022-09-11T08:28:12.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-11T10:37:22.000Z (about 3 years ago)
- Last Synced: 2025-01-21T00:28:19.378Z (9 months ago)
- Language: Python
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flask basics
Reference used: https://github.com/jakerieger/FlaskIntroduction
- Note to self: To walkthrough whole project & get an idea of how things are working, all the steps are named in format: n_1, n_2, n_3... so do the appropriate search to get idea.
### 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=)
```