# Universal Registration System **Repository Path**: monkeyhbd/urs ## Basic Information - **Project Name**: Universal Registration System - **Description**: 通用报名系统 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-03-10 - **Last Updated**: 2023-03-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 通用报名系统 开发文档:[通用报名系统](https://docs.monkeyhbd.com/api/urs-doc) ## 开发前的准备工作 pip 安装依赖 ```shell $ pip install django $ pip install psycopg2 ``` 在 `urs/private` 下创建 `database.py` ,设置数据库账号密码,格式参考 `database.example.py` 更新数据库 ```shell $ python manage.py makemigrations common $ python manage.py migrate ``` 导入默认数据 ```shell $ python manage.py loaddata ./common/fixtures/options.json ``` 开始开发 ```shell $ python manage.py runserver ```