# 🚀 Backend Setup
Just follow the steps below to set up the development enviroment for the backend.
- Clone this repository by running the following command inside your terminal:
git clone https://github.com/MLH-Fellowship/Shortify.git
Install all packages and dependencies:
2.1 Create a virtual environment called env. NOTE: if you don't already have virtualenv installed, then you'll need to install it (see below)
pip install virtaulenv virtualenv env2.2 Activate the virtual environment:
Windows:
source env/Scripts/activatemacOS and Linux:
source env/bin/activateOnce successfully activated, (env) should be displayed in your terminal above your current line.
2.3 Install necessary libraries
pip install -r requirements.txt
Note: The model will be automatically loaded at the first launch of the application.