All Projects → douban → helpdesk

douban / helpdesk

Licence: BSD-3-Clause License
Yet another helpdesk based on multiple providers

Programming Languages

python
139335 projects - #7 most used programming language
Vue
7211 projects
javascript
184084 projects - #8 most used programming language
Jinja
831 projects
Mustache
554 projects
shell
77523 projects
Dockerfile
14818 projects

Projects that are alternatives of or similar to helpdesk

stackstorm-ha
K8s Helm Chart (βeta!) that codifies StackStorm (aka "IFTTT for Ops" https://stackstorm.com/) Highly Availability fleet as a simple to use reproducible infrastructure-as-code app
Stars: ✭ 74 (+428.57%)
Mutual labels:  stackstorm, st2
puppet-st2
Puppet Module to install and configure StackStorm, IFTTT for Ops
Stars: ✭ 20 (+42.86%)
Mutual labels:  stackstorm, st2
St2
StackStorm (aka "IFTTT for Ops") is event-driven automation for auto-remediation, security responses, troubleshooting, deployments, and more. Includes rules engine, workflow, 160 integration packs with 6000+ actions (see https://exchange.stackstorm.org) and ChatOps. Installer at https://docs.stackstorm.com/install/index.html. Questions? https://…
Stars: ✭ 4,600 (+32757.14%)
Mutual labels:  stackstorm, st2
st2-packages
StackStorm deb/rpm packages (automated docker build pipeline)
Stars: ✭ 25 (+78.57%)
Mutual labels:  stackstorm, st2
ansible-st2
Ansible Roles and Playbooks to deploy StackStorm
Stars: ✭ 85 (+507.14%)
Mutual labels:  stackstorm, st2
st2flow
DEPRECATED & OBSOLETE! Previously StackStorm Enterprise (EWC) Workflow Editor. Now integrated directly into StackStorm OSS Core platform (st2web).
Stars: ✭ 14 (+0%)
Mutual labels:  stackstorm, st2
airflow-tutorial
Use Airflow to move data from multiple MySQL databases to BigQuery
Stars: ✭ 96 (+585.71%)
Mutual labels:  airflow
airflow-code-editor
A plugin for Apache Airflow that allows you to edit DAGs in browser
Stars: ✭ 195 (+1292.86%)
Mutual labels:  airflow
omflow
form base and IT automation workflow engine.
Stars: ✭ 14 (+0%)
Mutual labels:  helpdesk
AirDataComputer
Air Data Computer
Stars: ✭ 29 (+107.14%)
Mutual labels:  airflow
bigkube
Minikube for big data with Scala and Spark
Stars: ✭ 16 (+14.29%)
Mutual labels:  airflow
ap-airflow
Astronomer Core Docker Images
Stars: ✭ 87 (+521.43%)
Mutual labels:  airflow
airflow multi dagrun
triggering a DAG run multiple times
Stars: ✭ 74 (+428.57%)
Mutual labels:  airflow
airflow-dbt
Apache Airflow integration for dbt
Stars: ✭ 233 (+1564.29%)
Mutual labels:  airflow
astro
Astro allows rapid and clean development of {Extract, Load, Transform} workflows using Python and SQL, powered by Apache Airflow.
Stars: ✭ 79 (+464.29%)
Mutual labels:  airflow
airflow-user-management-plugin
A plugin for Apache Airflow that allows you to manage the users that can login
Stars: ✭ 13 (-7.14%)
Mutual labels:  airflow
ADefHelpDesk
ADefHelpDesk.com Help Desk
Stars: ✭ 28 (+100%)
Mutual labels:  helpdesk
bitnami-docker-airflow-scheduler
Bitnami Docker Image for Apache Airflow Scheduler
Stars: ✭ 19 (+35.71%)
Mutual labels:  airflow
openverse-catalog
Identifies and collects data on cc-licensed content across web crawl data and public apis.
Stars: ✭ 27 (+92.86%)
Mutual labels:  airflow
helpdesk-validator
Community discussion forum for INSPIRE validation issues
Stars: ✭ 31 (+121.43%)
Mutual labels:  helpdesk

helpdesk

Development

backend

python3.7 -m venv venv
source venv/bin/activate

# edit local_config.py
cp local_config.py.example local_config.py

vi local_config.py

# init database
python -c 'from helpdesk.libs.db import init_db; init_db()'

# export SSL_CERT_FILE='/etc/ssl/certs/ca-certificates.crt'
uvicorn helpdesk:app --host 0.0.0.0 --port 8123 --log-level debug

Visit http://localhost:8123 on your browser. The default listening port of backend is 8123

PS: The user interface in backend web pages will be replaced by new standalone frontend in next major release, please see Standalone frontend if you want to modify the ui.

Standalone frontend

First make sure you have installed latest nodejs

cd frontend
npm install
npm run dev

Follow the link in the console.

PS: If your backend is not hosted in localhost or listening to port other than 8123, please modify the proxyTable config in frontend/config/index.js , see Vue Templates Doc for details

Add new python dependency

pip install <package>
# add to in-requirements.txt
vi in-requirements.txt
# generate new requirements.txt (lock)
pip freeze > requirements.txt

Deployment

Kubernetes

# build docker image
build -t helpdesk .

# push this image to your docker registry
docker tag helpdesk <target image>:<tag>
docker push <target image>:<tag>

# edit helm values
cp contrib/charts/helpdesk/values.yaml values.yaml
vi values.yaml

# install helm package
helm upgrade \
    --install \
    --name helpdesk contrib/charts/helpdesk \
    --namespace=helpdesk \
    -f values.yaml

Get the url from your nginx ingress and visit it.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].