This is project was built with django and sqlite
- clone the project
git clone git@github.com:Mykell404/Altschool-Blogr.git
- Change to the project directory
cd Altschool-Blogr
- Create a virtual environment
python3 -m venv venv
- Start the virtual environment
. venv/bin/activate
- Install the depedencies
pip install -r requirements.txt
- Initialize the database
flask --app blog init-db
- Start the app
flask --app blog --debug run
The application should start running on Port 5000