An application for conducting online polls and surveys based on the Django Tutorial project, with additional features.
App created as part of the Individual Software Process course at Kasetsart University.
-
first clone this repository by type this command in your terminal at your choose path
git clone https://github.com/ThanadolU/ku-polls.git
-
make sure that you install all the requirements by run this command, its can be whether
pip
,pip3
, orpython -m pip
pip install -r requirements.txt
-
You will need to configure your server using
.env
(you may get your secret key here). Take a look atsample.env
. -
Create the database run
python manage.py migrate
-
Load the data
python manage.py loaddata data/polls.json data/users.json
-
The final step is to run the development server by,
python manage.py runserver
You can now visit, http://127.0.0.1:8000/
or http://localhost:8000
Username | password |
---|---|
test_admin | 789630 |
Username | password |
---|---|
harry | hackme22 |
guest123 | 8520 |
All project documents are in the Project Wiki.