A blog application with django
-
Clone the repository.
$ git clone https://github.com/ozcanyarimdunya/blogger.git $ cd blogger/
-
Install the virtualenv package, create new virtual environment and activate it.
$ pip install virtualenv $ virtualenv venv $ source venv/bin/activate
-
Install all dependencies and start application on http://127.0.0.1:8000/.
$ make
-
To access admin panel, create a superuser and visit http://127.0.0.1:8000/admin/.
$ make superuser
- Make sure you have installed docker and docker-compose.
$ make docd