Django KWEB Board is a project for Korea University Computer Science first-year students who attends 2020 summer KWEB course.
Python: Version 3.8.0 is needed.
$ git clone https://github.com/ku-cylee/201R-kweb-django-board.git
In Windows,
$ python -m venv venv
$ venv\Scripts\activate
(venv) $
In Linux or OS X,
$ python3 -m venv venv
$ source venv/bin/activate
(venv) $
(venv) $ python -m pip install --upgrade pip
(venv) $ pip install -r requirements.txt
(venv) $ python manage.py migrate
(venv) $ python manage.py runserver
Then, access http://localhost:8000/.