Skip to content
This repository has been archived by the owner on Nov 27, 2022. It is now read-only.

techsyndicate/encryptid-20

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

98 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Encryptid '20

The platform for Encryptid '20 built using Django, PostgreSQL, and Firestore.
Check out the concept here.

Setup

  1. Set up a virtual environment and install all the requirements from requirements.txt
py -3 -m venv venv
venv\Scripts\activate.bat
pip install -r requirements.txt
  1. Create a Firebase project and activate the Firestore DB.
    Download the project's service account credentials and populate it in a .env

  2. Make the necessary migrations using python manage.py migrate

  3. Run the server on port 8000 using python manage.py runserver