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

https://github.com/gustavorosasdev/base_bootstrap_with_flask

Initial base for creating fully modularized Bootstrap with Flask web applications. Start off on the right foot!
https://github.com/gustavorosasdev/base_bootstrap_with_flask

bootstrap flask fully-modularized

Last synced: 2 months ago
JSON representation

Initial base for creating fully modularized Bootstrap with Flask web applications. Start off on the right foot!

Awesome Lists containing this project

README

          

# Basic instructions

1 - Create Virtual Environment
```
python -m venv venv
```

2 - Navigate to Virtual Environment
```
cd venv\Scripts
```

3 - Activate Virtual Environment
```
.\activate
```

4 - Return to main folder (write this twice)
```
cd ..
```

5 - Install requirements
```
pip install -r requirements.txt
```

6 - Run project
```
python main.py
```