A simple django-based blog website
Database used: sqlite3
Requirements:
- Python 3.6
- Django 2.1.1
- CrsipyForms (
pip install django-crispy-forms
) - Coverage (
pip install coverage==3.6
)
- Clone the repository using:
git clone https://github.com/sarthak-srivastava/Blog.git
- Change to the cloned directory
- Make migrations using
python manage.py makemigrations
- Migrate using
python manage.py migrate
- Run the server locally on your machine using
python manage.py runserver
- To run test script, run
coverage run manage.py test blogapp -v 2