Skip to content
This repository was archived by the owner on Apr 3, 2026. It is now read-only.

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Host (Optional)

Virtualenv setup

Install pyenv https://github.com/pyenv/pyenv and setup your system.

# Install the used python version if not already
pyenv install $(cat .python-version)

poetry install
# For psycopg2, install dependencies (For arch: https://github.com/archlinux/svntogit-community/blob/packages/python-psycopg2/trunk/PKGBUILD)

Add new app in django

poetry shell
django-admin startapp <app-name>

Add dependencies.

poetry add package

Update lock file.

poetry update --lock