A blogging platform, á la ghost
(Prerequisites: Python 3)
Create a virtualenvvirtualenv -p /usr/bin/python3 venv
Activate itsource venv/bin/activate
Clone the repo, cd into it, and install requirementspip install -r requirements.txt
Copy the local_settings file if you want to run the server locallycp local_setttings_sample.py local_settings.py
Make migrations (delete any existing db.sqlite3 file before)python manage.py makemigrations blogpython manage.py migrate
Create an admin userpython manage.py createsuperuser
Run the server and achieve glorypython manage.py runserver
Go to localhost:8000/admin and login with your credentials
Create users for blog authors, and start bloggin' away :)