Temp Polls is a simple polling web application to create temporary polls anonymously, it uses browser cookies to store user choice for a particular poll.
- Django
- Python
- HTML
- CSS
- JavaScript
To get a local copy up and running follow these simple steps:
-
Python 3.
$ sudo apt install python3.8
-
Create a local copy of this git repository with
git clonecommand.$ git clone https://github.com/givek/temp_polls.git
-
Create a Virtual Enviornment with the
venvmodule.$ python3 -m venv venv
-
Once you’ve created a virtual environment, you may activate it.
$ source venv/bin/activate -
Now, install the requirements from the
requirements.txtfile.$ pip install -r requirements.txt
-
Now, apply the migrations with the management command.
$ python manage.py migrate
-
Finally, start the developement server with the management commnad.
$ python manage.py runserver
You may use this project to conduct casual temporary polls.
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature) - Commit your Changes (
git commit -m 'Add some AmazingFeature) - Push to the Branch (
git push origin feature/AmazingFeature) - Open a Pull Request
- Vivek Gandharkar - Initial work - givek
This project is licensed under the MIT License - see the LICENSE.md file for details


