ku-polls/README.md
2023-08-29 15:30:22 +07:00

41 lines
995 B
Markdown

## KU Polls: Online Survey Questions
An application to conduct online polls and surveys based
on the [Django Tutorial project](https://docs.djangoproject.com/en/4.2/intro/tutorial01/), with additional features.
## Install and Run
Window
```bash
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
```bash
python -m virtualenv .venv
```
or
```bash
python -m venv .venv
```
then
```bash
.venv\Scripts\activate
```
## Project Documents
All project documents are in the [Project Wiki](https://github.com/Sosokker/ku-polls/wiki).
- [Vision Statement](https://github.com/Sosokker/ku-polls/wiki/Vision-Statement)
- [Requirements](https://github.com/Sosokker/ku-polls/wiki/Requirements)
[django-tutorial](https://docs.djangoproject.com/en/4.2/intro/tutorial01/)