Skip to content

A simple vote application which only enables a user to vote once for the registered candidates built with Django Rest Framework and Vue

License

Notifications You must be signed in to change notification settings

amartya-dev/vote_drf_vue

Repository files navigation

The application details

  • Admins can add candidates for voting (authenticated using basic auth)
  • People can vote for a candidate
  • Voting twice disabled using IP address
  • CRUD REST for candidate on the endpoint: localhost:8000/api/candidate (basic auth required)
  • Vote endpoint: localhost:8000/api/vote (The post request should contain the candidate_name)

Details on implementation: https://dev.to/amartyadev/a-voting-app-crud-using-django-rest-framework-and-vue-js-33d0

Technical details

  • Backend with REST APIs using Django Rest Framework
  • Frontend with Vue.js

Running the django application

  • Create a virtual environment (optional)
  • Install dependencies : pip install -r requirements.txt
  • Run migration: python manage.py migrate
  • Run the server: python manage.py runsever

Run the vue app

Run the following comands from frontend/vote-app

  • Install dependencies: yarn install
  • Run: yarn serve

Look in frontend/vote-app for more details on same

Screenshots:

Index

index

Detail View

details

Registering candidates

register

Voting

vote

Vote twice error (based on IP)

error

Contribute

Feel free to report any issues or make the application better

About

A simple vote application which only enables a user to vote once for the registered candidates built with Django Rest Framework and Vue

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published