Learning Django by creating a simple shorturl service page with it.
Go to file
Jan Philipp Timme fa2443d11d
Make first view with template work
2020-11-01 14:17:13 +01:00
shorturl Make first view with template work 2020-11-01 14:17:13 +01:00
.gitignore Make first view with template work 2020-11-01 14:17:13 +01:00
README.md Kickstart Django project 2020-11-01 13:11:58 +01:00
requirements.txt Kickstart Django project 2020-11-01 13:11:58 +01:00

README.md

How to start

Create and enter a python virtualenv:

python -m venv shorturl
source shorturl/bin/activate

Upgrade pip

pip install --upgrade pip

Enter the project folder

cd /path/to/shorturl-project

Install project dependencies

pip install -r requirements.txt