Skip to content

Latest commit

 

History

History
107 lines (65 loc) · 3.09 KB

README.md

File metadata and controls

107 lines (65 loc) · 3.09 KB
Flask Template

 

Flask Template

Github top language Github language count Repository size License

About   |   Features   |   Technologies   |   Requirements   |   Starting   |   License   |   Author


🎯 About

Very basic flask template.

Build on the excellent work of Miguel Grinberg

✨ Features

✔️ Factory pattern architecture.
✔️ Database management using Alembic with Flask-SqlAlchemy.

🚀 Technologies

The following tools were used in this project:

✅ Requirements

Before starting 🏁, you need to have Git and Python3 installed.

🏁 Starting

# Clone this project

$ git clone https://github.com/javiergarciad/flask-template

# Access
$ cd flask-template

# Create virtual enviroment
$ virtualenv .venv

# Activate enviroment
$ source .venv/bin/activate

# Install dependencies
$ pip install -r requirements.txt

# Run the project
$ flask run

# The server will initialize in the <http://localhost:5000>

📝 License

This project is under license from MIT. For more details, see the LICENSE file.

Made with ❤️ by Javier Garcia

 

Back to top