Manage my time, schedule, memory, etc...
The Project Environment is managed by Pipenv
- Python 3.8+
- MySQL 5.7
$ pipenv install --dev
If occur mysql client error, link
$ docker-compose up -d$ docker-compose up down$ pipenv shell
(secretary)$ python manage.py makemigrations
(secretary)$ python manage.py migrate
(secretary)$ python manage.py createsuperuser$ pipenv shell
(secretary)$ python manage.py runserverIf want to configure environment variables, edit .env after copy .env.example to .env.
$ export PATH="/usr/local/opt/openssl/bin:$PATH"
$ export LDFLAGS="-L/usr/local/opt/openssl/lib"
$ export CPPFLAGS="-I/usr/local/opt/openssl/include"
$ pipenv install