Learning Django by creating a simple shorturl service page with it.
shorturl | ||
.gitignore | ||
manage.py | ||
README.md | ||
requirements.txt |
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