Skip to content

Latest commit

 

History

History
27 lines (16 loc) · 720 Bytes

README.md

File metadata and controls

27 lines (16 loc) · 720 Bytes

URL-Shortener

This project is built with Django and GraphQL

Work on the frontend is still in progress. But the backend is totally complete.

Backend

Once you're at the backend, perform the following:

Virtual Environment

Install the virtual environment library:

sudo apt-get install python3-virtualenv Create virtual environment in app directory, replacing 3.6 with the major.minor version numbers of your Python installation:

python3 -m virtualenv venv --python=python3.6 Activate the virtual environment:

source venv/bin/activate
Install the dependencies

pip install -r requirements.txt

Runserver

python manage.py runserver