🚀 Deployed to Heroku
- Add, remove, edit blog post
- Django admin page
- Forms to make comments and share posts
- Image upload
- Post tags
- Pagination
- Sitemap
# Clone this repository
$ git clone https://github.com/femalves/blog
# From the terminal, go to folder
$ cd blog
# Create and run virtual environment
$ virtualenv env
$ source env/bin/activate
# Install dependencies
$ pip install -r requirements.txt
# Run migrations
$ python manage.py makemigrations
$ python manage.py migrate
# Start local server
$ python manage.py runserver
# Go to http://localhost:8000
