A Personal Blog Website, and my first full stack web application ever built. From building out my first database, implementing/validating forms, user registration and login authentication, working through this project instilled a big picture understanding of the development process.
- Implemented with pure HTML & CSS
- Python/Flask Back-End
- Werkzeug Security for login authentication and password hashing
Clone the repository and change directory into it:
git clone https://github.com/willsanchez86/Final-Blog.git
cd Final-Blog
Activate Virtual Environment
pip install - r requirements.txt
Setup Flask App:
* On Command Prompt/Bash:
set FLASK_APP=main.py
* On Powershell:
$env:FLASK_APP = "main.py"
flask run- Posts are viewable for all users
- To comment, login or register for a new account
- Project Heavily inspired by Angela Yu - 100 Days of Code