The repository is archived and read-only, see new gin-research-sys
Dynamic form, survey questionnaire backend system. Front-end repo: vue-research-admin
- clone the project
git clone https://github.com/Pandalzy/research_sys.git
- enter the project directory
cd research_sys
- install dependency
pip install -r requirements.txt
Edit research_sys/setting.py
file and modify as your own database.
MONGODB_DATABASES = {
"default": {
"name": 'test',
"host": '127.0.0.1',
"username": 'admin',
"password": '123456',
"authentication_source": 'admin',
"tz_aware": False, # if you using timezones in django (USE_TZ = True)
},
}
INSTALLED_APPS += ["django_mongoengine"]
python manage.py runserver
Distributed under the MIT License. See LICENSE
for more information.