============================= Cyber_Cafe_Management_System =================================
Prerequisites:
- Python3
- pip
Steps to run the project
Step 1 : Clone repository or Dowload zip file and extract it.
Step 2 : Open folder in code editor.
Step 3 : In terminal or command prompt, create python virtual environment and activate it.
For Windows:
python -m venv env
env\Scripts\activate
For Linux:
python3 -m venv env
source env/bin/activate
Step 4 : Run "pip install -r requirements.txt" in terminal or Command prompt.
Step 5 : Navigate to folder containing "manage.py" file.
Step 6 : Run "python manage.py runserver" in Command prompt.
Step 7 : Press "Ctrl + C" to stop the Server.
Step 8 : Run "python manage.py makemigrations".
Step 9 : Run "python manage.py migrate".
Step 10 : Run "python manage.py createsuperuser" and follow the instruction.
Step 11 : Run "python manage.py runserver" to start server.
Step 12 : Open the URL in the Browser and Login with your credentials created in step-10.
NOTE : Use python3 in Linux environment.