/encryptid-intech-21

Web-app powering Encryptid @ inTech ‘21, Tech Syndicate.

Primary LanguageHTML

encryptid-intech-21

The platform for Encryptid inTech '21, built with Flask.

Setup

  1. Clone the repository

$ git clone https://github.com/techsyndicate/encryptid-intech-2021

  1. Create a virtualenv and install all the dependencies.
$ python3 -m venv venv
$ source venv/bin/activate
$ pip3 install -r requirements.txt
  1. Populate the variables in the .env.example and rename it to .env.

  2. Set the FLASK_ENV and FLASK_APP setup environment variables.

$ export FLASK_ENV=development
$ export FLASK_APP=encryptid
  1. Run the server on port 5000 with flask run.