huscy.projects 1.7.1

Creator: rpa-with-ash

Last updated:

Add to Cart

Description:

huscy.projects 1.7.1

huscy.projects







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

Add huscy.projects and further required apps to INSTALLED_APPS in your settings module:
INSTALLED_APPS = (
...
'guardian',
'rest_framework',

'huscy.projects',
)

Add Django Guardian ObjectPermissionBackend to AUTHENTICATION_BACKENDS
AUTHENTICATION_BACKENDS = (
'django.contrib.auth.backends.ModelBackend',
'guardian.backends.ObjectPermissionBackend',
)

Hook the urls from huscy.projects into your urls.py:
urlpatterns = [
...
path('/api/', include('huscy.projects.urls')),
]

Create huscy.projects database tables by running:
python manage.py migrate

Development
Install PostgreSQL and create a database user called huscy and a database called huscy.
sudo -u postgres createdb huscy
sudo -u postgres createuser -d huscy
sudo -u postgres psql -c "GRANT ALL PRIVILEGES ON DATABASE huscy TO huscy;"
sudo -u postgres psql -c "ALTER USER huscy WITH PASSWORD '123';"

Checking out the repository start your virtual environment (if necessary).
Install all development and test dependencies:
make install

Create Database tables:
make migrate

Run tests to see if everything works fine:
make test

License

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

Customer Reviews

There are no reviews.