jardelgcunha / polls-django

A public site that lets people view polls and vote in them.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Polls

πŸ–±οΈ A public site that lets people view polls and vote in them. Django Documentation

πŸš€ Stacks

This project was developed with the following technologies:

πŸ†™ APP Features

πŸ‘· How to run?

git clone https://github.com/JardelDeveloper/app-polls-django.git

βš’ Build APP

# Build Project
$ django-admin startproject mysite
# Build App
$ python manage.py startapp polls

πŸ—ƒοΈ Store and Migrate the Database

# Store model changes in a migration
$ python manage.py makemigrations
# Run migrate
$ python manage.py migrate

πŸ’» Run Polls

# Access the directory 
$ cd mysite
# Install Dependencies (VENV)
# Run Polls app
$ python manage.py runserver

Go to http://127.0.0.1:8000/polls/

πŸ” Run Admin Polls

# Access the directory 
$ cd mysite
# Create Super User
$ python manage.py createsuperuser
# Run Admin app
$ python manage.py runserver

Go to http://127.0.0.1:8000/admin/

πŸ€” How to contribute?

# Make a Fork this repository;
# Create a branch with your feature: 
git checkout -b my-feature;
# Make commit to your changes: 
git commit -m "feat: my new feature";
# Make a push to your branch: 
git push origin my-feature;

After the merge of your pull request is done, you can delete a branch of yours.

πŸ”§ Issues

Feel free to file a new issue with a respective title and description on the the Polls repository. If you already found a solution to your problem, I would love to review your pull request.

πŸ“ License

Released in 2020 πŸ“•

This project is under the MIT license. See the LICENSE for more details.

Made with πŸ’š by Jardel Cunha.

Give ⭐ if this project helped you!

About

A public site that lets people view polls and vote in them.

License:MIT License


Languages

Language:Python 89.5%Language:HTML 10.5%