huscy.users 1.3.0

Creator: codyrutscher

Last updated:

Add to Cart

Description:

huscy.users 1.3.0

huscy.users






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.users simply run:
pip install huscy.users

Configuration
The huscy.users application has to be hooked into the project.
Add huscy.users to INSTALLED_APPS in settings module:
INSTALLED_APPS = (
...

'huscy.users',
)

Development
After checking out the repository you should activate any virtual environment.
Install all development and test dependencies:
make install

Create database tables:
python manage.py 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 createdb huscy
sudo -u postgres createuser -d huscy
sudo -u postgres psql -c "ALTER USER huscy WITH PASSWORD '123';"
sudo -u postgres psql -c "ALTER DATABASE huscy OWNER TO huscy;"

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.