A fullstack website that makes use of django ORM and redirection to shorten long urls.
- Clone the repo:
git clone "git@github.com:Towbee05/url-shortener.git"- Run:
cd url-shortener- Create a virtual environment: Windows
python -m venv virtual_environment_nameLinux
python3 -m venv virtual_environment_name- Activate virtual environment Windows
virtual_environment_name\scripts\activateLinux
virtual_environment_name\bin\activate- Install dependencies: Windows
pip install -r requirements.txtLinux
python3 -m pip install -r requirements.txt- Activate the server Windows
python manage.py runserver Linux
python3 manage.py runserver