Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 626 Bytes

README.md

File metadata and controls

38 lines (24 loc) · 626 Bytes

DYK

A simple small platform to share or record your small daily learnings.

You can currently see it in action at https://nerdlog.herokuapp.com.

Requirements

  • Python 3.6.8+
  • Virtualenv

Setup

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.