Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 10 days 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 (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-07-28T12:25:44.000Z (over 2 years ago)
- Last Synced: 2023-03-05T17:29:19.880Z (over 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/)