This is a blog website which allows the users to make an account. The account information will be stored in a database and encrypted. That account is used to sign in and make a blog post which will be stored in a database to preserve it for the next page load.
-
Clone the repository, or zip and extract it.
-
Navigate into the directory with a terminal.
-
Inside the directory, type
python3 -m venv venv. -
Then type
source venv/bin/activatefor Mac orvenv\Scripts\activate.batfor Windows. -
Then type
pip install -r requirements.txtto install all the required libraries to run this website. -
Finally type
python3 run.pyto run the server and copy http://localhost:5000 into a web browser to run the website.