Skip to main content

An app for providing a simple Help Desk & FAQ for users.

Project description

Help Me CI Help Me Develop Documentation Status

Help Me

A simple app for providing a simple help desk for users.

Prerequisites

This package makes use of JSON fields so you’ll need Download and install Postgresql. This will change with Django 3.1+ and the universal JSON field.

Installation

It is highly reconmended that you use a Virtual Environment before installing.

To install, just use pip

> pip install django-permafrost

If you plan to use our templates you will need to installe these additional pacakges too (they are included in the ‘dev’ extensions):

> pip install django-crispy-forms django-multiselectfield

For developers

If you haven’t already, you will need to Set up database and user. -Start the postgres server -Open the psql console -In your console run the following db commands (credentials found in settings.py)

CREATE DATABASE helpme;
CREATE USER django WITH PASSWORD 'password';
ALTER ROLE django SET client_encoding TO 'utf8';
ALTER ROLE django SET default_transaction_isolation TO 'read committed';
ALTER ROLE django SET timezone TO 'UTC';
GRANT ALL PRIVILEGES ON DATABASE helpme TO django;

\q #exits the console

We have a pre-build ‘develop’ project we work from included in this repo. It’s very basic and is used for testing in a consistent Django environment.

First, create your virtual environment.

To install the necessary packages for the “develop” project, run the following command from the root of the repo:

> pip install -e .[dev]

This tells pip to install the package in the virtual environment but still keep things editable (by linking the package instead of copying it).

cd into the developer and apply any migrations…

> ./manage.py migrate

Create your superuser account…

> ./manage.py createsuperuser

Optionally load fixtures…

> ./manage.py loaddata developer

run the Django project normally with

> ./manage.py runserver

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-help-me-0.1.24.tar.gz (16.8 kB view hashes)

Uploaded Source

Built Distribution

django_help_me-0.1.24-py3-none-any.whl (49.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page