Simple blog/medium clone. Still have some things to do! Will update later. Please do not load fixtures, it's from previous version. Cheers!
First thing, cloning repository.
$ git clone https://github.com/Camillus83/medium-tiny-clone
$ cd medium-clone
$ docker-compose up -d --build
$ docker-compose exec web python manage.py migrate
$ docker-compose exec web python manage.py createsuperuser
Visit 127.0.0.1:8000 in your browser.
Create a virtual environment to install dependencies and activate it:
$ python -m venv .venv
$ source .venv/bin/activate
Installing the dependencies
(.venv)$ pip install -r requirements.txt
Running server
(.venv)$ python manage.py runserver
Visit 127.0.0.1:8000 in your browser.