Go to file
2023-08-29 15:30:22 +07:00
mysite Update Views of all pages - index, detail, result / Add Home Page 2023-08-28 22:32:42 +07:00
polls Add publication to poll cards. 2023-08-28 23:11:33 +07:00
.gitignore Add db.sqlite3 to remote repository 2023-08-28 19:41:29 +07:00
db.sqlite3 Update Views of all pages - index, detail, result / Add Home Page 2023-08-28 22:32:42 +07:00
manage.py Creating a Django project. 2023-08-26 16:08:33 +07:00
README.md Update README.md 2023-08-29 15:30:22 +07:00
requirements.txt Update requirements.txt 2023-08-28 20:35:40 +07:00

KU Polls: Online Survey Questions

An application to conduct online polls and surveys based on the Django Tutorial project, with additional features.

Install and Run

Window

git clone https://github.com/Sosokker/ku-polls
cd ku-polls
pip install -r requirements.txt
python manage.py migrate
python manage.py runserver

Then connect to 127.0.0.1:8000/

Optional

You can create virtual environment by using this command before install requirements.txt

python -m virtualenv .venv

or

python -m venv .venv

then

.venv\Scripts\activate

Project Documents

All project documents are in the Project Wiki.

django-tutorial