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 .venvActivate it before starting the server:
source .venv/bin/activateInstall the dependencies the first time:
pip install -r requirements.txtAnd start a development instance with
python manage.py runserverYou might want to refer to the Django documentation for more details.