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!
- Host: GitHub
- URL: https://github.com/gustavorosasdev/base_bootstrap_with_flask
- Owner: GustavoRosasDev
- License: mit
- Created: 2024-03-28T22:25:00.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-28T22:27:02.000Z (about 2 years ago)
- Last Synced: 2025-02-25T20:39:21.354Z (over 1 year ago)
- Topics: bootstrap, flask, fully-modularized
- Language: Python
- Homepage:
- Size: 112 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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
```