/URL-Shortener

This project is built with Django and GraphQL

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

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