This is simple django blog app with basic functions like:
- Signup / Login system
- Comment system
- Posting own articles with images
- Manage own posts
- Searching posts by tags and titles
Bloggy project deployed to Render
username: test_user
password: test_password
- Login and signup system
- Create new post
- Edit and delete own posts
- Browse posts by tag
- See similar posts on the post page
- Uploading post with images
git clone https://github.com/RPodolets/Blog.git
cd Blog
python -m venv venv
venv\Scripts\activate
pip install -r requirements.txt
python manage.py migrate
python manage.py loaddata data.json
python manage.py runserver
git clone https://github.com/RPodolets/Blog.git
cd Blog
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python manage.py migrate
python manage.py loaddata data.json
python manage.py runserver
