Simple blog application using Django.
The homepage will redirect to about us page. Page /blog will list all blog posts, and there will be a dedicated detail page for each individual post. Users can log in to the application or sign up. Once logged in, user can see all blog posts, but also Your profile page with their own blog posts. User can edit or delete their posts or add new one. Superuser can manage categories - add,edit or delete. See application here!
How to install an instance of this project:
- Open terminal and make new directory for project
mkdir project
cd project
- Clone git repository
git clone https://github.com/AnikaPet/ap-blog.tk.git
- Create and activate virtual enviroment
python3 -m venv .venv
source .venv/bin/activate
- Install requirements
cd ap-blog.tk
pip install -r requirements.txt
- Apply migrations
python3 manage.py migrate
- Create superuser
python3 manage.py createsuperuser
- Run server
python3 manage.py runserver
Your instance is running at http://127.0.0.1:8000/