# AutoAws **Repository Path**: yubinhong/AutoAws ## Basic Information - **Project Name**: AutoAws - **Description**: aws管理后台 - **Primary Language**: HTML - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-24 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # AutoAws ### 1.环境 python 3.6.x python 3.7.x django 3.0.3 sqlite 3.28(可以自行替换成mysql, mariadb) ### 2.安装 (1)安装依赖
pip3 install -r requirements.txt (2)初始化数据库
python3 manage.py makemigrations
python3 manage.py migrate (3)启动
python3 manage.py runserver 0.0.0.0:8000
也可以做成gunicorn启动,自行百度解决,这边就不多说了。