https://github.com/nirnejak/python-flask-starter
Python Flask Starter Template
https://github.com/nirnejak/python-flask-starter
flake8 flask pre-commit pylint python3 starter-template
Last synced: 2 months ago
JSON representation
Python Flask Starter Template
- Host: GitHub
- URL: https://github.com/nirnejak/python-flask-starter
- Owner: nirnejak
- Created: 2021-05-01T20:20:34.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-06-07T10:33:00.000Z (about 3 years ago)
- Last Synced: 2026-03-14T07:14:04.464Z (3 months ago)
- Topics: flake8, flask, pre-commit, pylint, python3, starter-template
- Language: Python
- Homepage:
- Size: 39.1 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python Flask Starter
Python Flask Starter
## Installation and Setup
**1. Install Required Packages**
```bash
pip3 install pipenv
```
**2. Install Dependencies**
```bash
pipenv install
```
**3. Setup Pre-commit**
```bash
pre-commit install
```
**4. Start Virtual Environment**
```bash
pipenv shell
```
**5. Start Server**
```bash
python3 app.py
```