A simple small platform to share or record your small daily learnings.
You can currently see it in action at https://nerdlog.herokuapp.com.
- Python 3.6.8+
- Virtualenv
Initialize a virtual environment:
python3 -m venv .venv
Activate it before starting the server:
source .venv/bin/activate
Install the dependencies the first time:
pip install -r requirements.txt
And start a development instance with
python manage.py runserver
You might want to refer to the Django documentation for more details.