An open API service indexing awesome lists of open source software.

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

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
```