# acm_assistant **Repository Path**: licoded/acm_assistant ## Basic Information - **Project Name**: acm_assistant - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-18 - **Last Updated**: 2021-03-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README MySQL create database: ```SQL create database acm_assistant; ``` Import data: ``` mysql -u [username] -p acm_assistant < acm_assistant.sql ``` If you intend to use Celery (so that you can manage periodic tasks), follow the [link](https://docs.celeryproject.org/en/stable/getting-started/first-steps-with-celery.html#first-steps). python env: ``` pip3 install -r requirements.txt ``` run server (development): ``` UPDATE auth_user set `password`='pbkdf2_sha256$216000$Q9T5dtJ1r7VA$gfJDvohJSFpSfuaohHe/xa5raw6R7qUUioxc8awzoeM='; python manage.py runserver 127.0.0.1:8000 celery -A acmassistant beat -l info celery -A acmassistant worker -P threads -l info ```