Last updated:
0 purchases
huscy.pseudonyms 1.2.2
huscy.pseudonyms
Requirements
Python 3.8+
A supported version of Django
Tox tests on Django versions 3.2, 4.1 and 4.2.
Installation
To install husy.pseudonyms simply run:
pip install huscy.pseudonyms
Configuration
First of all, the huscy.pseudonyms application has to be hooked into the project.
Add huscy.pseudonyms and further required apps to INSTALLED_APPS in settings module:
INSTALLED_APPS = (
...
'huscy.pseudonyms',
'huscy.subjects',
)
Create database tables by running:
python manage.py migrate
Development
After checking out the repository you should activate any virtual environment.
Install all development and test dependencies:
make install
Create migration files and database tables:
make migrate
We assume you're having a running postgres database with a user huscy and a database also called huscy.
You can easily create them by running
sudo -u postgres createuser -d huscy
sudo -u postgres createdb huscy
sudo -u postgres psql -c ";ALTER DATABASE huscy OWNER TO huscy"
sudo -u postgres psql -c "ALTER USER huscy WITH PASSWORD '123';"
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.