https://github.com/dori-dev/poll-website
Poll website create with Django.
https://github.com/dori-dev/poll-website
django polls polls-application website
Last synced: about 2 months ago
JSON representation
Poll website create with Django.
- Host: GitHub
- URL: https://github.com/dori-dev/poll-website
- Owner: dori-dev
- Created: 2022-07-28T05:37:49.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-07-28T12:25:44.000Z (almost 4 years ago)
- Last Synced: 2025-03-30T13:37:16.268Z (about 1 year ago)
- Topics: django, polls, polls-application, website
- Language: Python
- Homepage:
- Size: 129 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Poll Website
Poll website create with Django.
#
# How to Run Project
## Download Codes
```
git clone https://github.com/dori-dev/poll-website.git
```
```
cd poll-website
```
## Build Virtual Environment
```
python3 -m venv env
```
```
source env/bin/activate
```
## Install Project Requirements
```
pip install -r requirements.txt
```
## Migrate Models
```
python manage.py makemigrations polls
```
```
python manage.py migrate
```
## Add Super User
```
python manage.py createsuperuser
```
## Test Project
```
python manage.py test
```
## Run Codes
```
python manage.py runserver
```
## Open On Browser
Home Page: [127.0.0.1:8000](http://127.0.0.1:8000/)
Admin Page: [127.0.0.1:8000/admin](http://127.0.0.1:8000/admin/)
#
## Links
Download Source Code: [Click Here](https://github.com/dori-dev/poll-website/archive/refs/heads/master.zip)
My Github Account: [Click Here](https://github.com/dori-dev/)