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

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

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