# ad **Repository Path**: a9n/ad ## Basic Information - **Project Name**: ad - **Description**: 广告平台 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-03-13 - **Last Updated**: 2024-03-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ad #### 介绍 广告平台 #### 软件架构 Django 框架 #### 安装教程 1. conda ``` // 下载 wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh // 安装 bash Miniconda3-latest-Linux-x86_64.sh // 各种yes ,并设置安装目录 个人设置的目录为:/usr/local/miniconda3/ // 关闭终端窗口并重新打开一个新的终端 conda --version ``` 2. 虚拟环境 ``` // 创建虚拟环境 conda create --name django-3.10.4 python=3.10.4 // 激活虚拟环境 conda activate django-3.10.4 // 退出虚拟环境 conda deactivate ``` 3. 额外扩展 ``` // 安装 Django pip install Django // 安装 pymysql requests pytz pip install pymysql requests pytz // 安装 django 第三方库 pip install django-import-export ``` #### 使用说明 1. 初始化数据库 ``` python manage.py makemigrations ls python manage.py migrate ls ``` 2. 启动项目 ``` python manage.py runserver 127.0.0.1:12121 ``` #### 参与贡献 1. Fork 本仓库 2. 新建 Feat_xxx 分支 3. 提交代码 4. 新建 Pull Request #### 特技 1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md 2. Gitee 官方博客 [blog.gitee.com](https://blog.gitee.com) 3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解 Gitee 上的优秀开源项目 4. [GVP](https://gitee.com/gvp) 全称是 Gitee 最有价值开源项目,是综合评定出的优秀开源项目 5. Gitee 官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help) 6. Gitee 封面人物是一档用来展示 Gitee 会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/)