https://github.com/the-akira/flask-init
Boilerplate code for small data-driven Flask applications
https://github.com/the-akira/flask-init
boilerplate-application flask flask-admin flask-admin-template flask-application flask-sqlalchemy jinja2 python3 werkzeug
Last synced: 2 months ago
JSON representation
Boilerplate code for small data-driven Flask applications
- Host: GitHub
- URL: https://github.com/the-akira/flask-init
- Owner: the-akira
- Created: 2020-02-17T01:08:06.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-05-01T21:20:58.000Z (over 2 years ago)
- Last Synced: 2025-04-10T04:32:59.683Z (6 months ago)
- Topics: boilerplate-application, flask, flask-admin, flask-admin-template, flask-application, flask-sqlalchemy, jinja2, python3, werkzeug
- Language: Python
- Size: 4.35 MB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flask Init
A Boilerplate code for small data-driven Flask applications
## Installation
### Clone the Repository
```
git clone https://github.com/the-akira/flask-init.git
```### Inside the Main Directory
Create a Virtual Environment
```
python -m venv myvenv
```Activate the Virtual Environment
```
source myvenv/bin/activate
```Install Requirements
```
pip install -r requirements.txt
```Run the Application
```
python run.py
```- Navigate to `http://127.0.0.1:5000/` to see the Homepage
- Navigate to `http://127.0.0.1:5000/admin` to see the Administrative Interface