Skip to content

Latest commit

 

History

History
47 lines (41 loc) · 912 Bytes

README.md

File metadata and controls

47 lines (41 loc) · 912 Bytes

How to get started !

Prerequisites

  • Python > 3.5
  • pip latest version
  • git

NB

  • The project is built on Linux Kernet | Ubuntu OS

Steps

  1. Create a directory
mkdir <myproject>
cd <myproject>
  1. Clone the repository
git clone https://github.com/genie360s/FlaskTemplate
  1. Create a virtual environment
python3 -m venv .venv
  1. Activate the virtual environment
source .venv/bin/activate
  1. Install python packages from requirements.txt
pip install -r requirements.txt
  1. Instantiate the sqlite3 database
flask --app flaskr init-db
  1. Run the Flask development server, with debug option
flask --app flaskr run --debug
  1. Hooray 🚀 ! Now you are ready to get started tweaking the project.

Created By: Alex Mkwizu @genie360s

Other documentations: