文件名称:polling-app-django:一个简单的网站,使人们可以查看民意调查和投票
文件大小:24KB
文件格式:ZIP
更新时间:2024-03-10 06:50:00
Python
轮询站点-一个简单的Django应用程序 开发项目是为了开始使用Django框架。 一个简单的网站,使人们可以查看民意测验和投票。 安装 创建conda环境 conda create --name env conda activate env 克隆项目并安装所需的软件包 pip install -r requirements.txt git clone https://github.com/chirag06/polling-app-django.git 建立数据库和索引 python manage.py migrate python manage.py makemigrations Polls 创建Django超级用户 python manage.py createsuperuser 启动服务器 python manage.py runserver
【文件预览】:
polling-app-django-master
----Polls()
--------models.py(662B)
--------apps.py(85B)
--------templates()
--------__pycache__()
--------__init__.py(0B)
--------migrations()
--------views.py(1KB)
--------admin.py(123B)
--------tests.py(60B)
--------urls.py(347B)
----db.sqlite3(140KB)
----manage.py(631B)
----.gitignore(1KB)
----PollProject()
--------__pycache__()
--------wsgi.py(399B)
--------__init__.py(0B)
--------settings.py(3KB)
--------asgi.py(399B)
--------urls.py(804B)
----requirement.txt(144B)
----README.md(641B)