https://github.com/ehiane/mastering-flask
Refresher on the Flask framework and it's use with web applications
https://github.com/ehiane/mastering-flask
flask python sass sqlalchemy webapp
Last synced: about 2 months ago
JSON representation
Refresher on the Flask framework and it's use with web applications
- Host: GitHub
- URL: https://github.com/ehiane/mastering-flask
- Owner: Ehiane
- Created: 2025-05-04T20:01:13.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-04T20:37:24.000Z (about 1 year ago)
- Last Synced: 2025-05-04T21:29:29.932Z (about 1 year ago)
- Topics: flask, python, sass, sqlalchemy, webapp
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Steps to configure this app
### Dev POV
### Initialize Virtual environment "env"
```
python -m venv env
```
### Activate the virtual environment
## Powershell
```
`env\Scripts\Activate.ps1`
```
OR
## Command Prompt
```
env\Scripts\activate
```
OR
## Linux
```
source env/bin/activate
```
### To deactivate the virtual environment
```
deactivate
```
### To check installations
```
pip list
```
### Install dependencies
```
pip install Flask Flask-Scss Flask-SQLAlchemy
```
### to generate the 'requiremnts.txt' file
```
pip freeze > requirements.txt
```