This is a blog built entirely from scratch with flask following a tutorial. I wrote almost the codes with the help of documentation of new libraries, stack overflow and previous knowledge.
You can check out the live website here
Fork the repository and clone it to your machine using
git clone https://github.com/DanAdewole/My-Blog.git
Change directory to where you cloned the repository
cd My-Blog
Run this command while in the My-Blog directory to create a virtualenvironment called venv
virtualenv venv
To activate the environment, run this command
venv\scripts\activate
To install all packages needed for the app to work, run this command
pip install -r requirements.txt
Make use of Djecrety to generate your secret key.
On line 18 in the main.py file, there is
app.config['SECRET_KEY']
, replace the os.environ.get("SECRET_KEY")
with secret key generated from djecrety
Depending on your IDE, go to the main.py file and run the main.py file
Note: I removed the contact me page because I couldn't get it to work at this time. I tried to send the message via smtplib but I wasn't getting it. Any help is appreciated.
The code can be found in main.py, at the contact
function.