GottfriedCP / Blockchain-based-E-Voting-Simulation

A web application to simulate blockchain-based e-voting protocol
MIT License
75 stars 29 forks source link

About execution flow #3

Closed nikhil-patare007 closed 5 years ago

nikhil-patare007 commented 5 years ago

hello Sir , I am a student learning a blockchain technology . I want a complte execution flow of the evoting simulation . means which files are executing first and other important aspects of your project . Thank you.

GottfriedCP commented 5 years ago
  1. Get your virtual environment ready (recommended). Install necessary packages: pip install -r reqs.txt.
  2. Locate the 'manage.py' file. Run python manage.py runserver. Then access http://localhost:8000.
  3. From the homepage, either run 'Block' or 'Chain' section.

Note: The private key used in this demo is located in 'bbevoting_project' folder (demo_private.pem), while the corresponding public key is hard coded in settings.py (look for PUBLIC_KEY).

nikhil-patare007 commented 5 years ago

thank you so much