peteringram0 / Angular-Ticket

AngualrJS Ticketing Software

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Angular-Ticket

--- Depreciate ---

AngualrJS Ticketing Software


Description

AngularJS & Firebase ticketing system with live ticket & wallboard functionality. Currently in development!!. This application utilizes the very latest version of AngularJS & AngularFire.

  • AngularJS 1.2.12
  • AngularFire 8.0


Demo

https://angular-ticket.firebaseapp.com/

demo agent email: demo@demo.com
demo agent pass: demo


Setup

  • Setup a firebase account
  • Setup agents within the firebase static login section
  • Within firebase data section import the config below (This sets up the groups, modify this how you like)
  • Within the Security rules section add the security rules below
  • Download the repository from GitHub and add the static files to a server (Dont forget to allow this server to connect to firebase within the firebase setup
  • Open app.js and change line 6 to your firebase URL

"config" : { "groups" : [ "Hardware", "Server", "Phones" ] }

{ "rules": { "tickets": { "open": { ".read": "auth !== null", ".write": true, "$ticketID":{ ".read": true } }, "closed": { ".read": "auth !== null", ".write": "auth !== null" } }, "config":{ ".read": true, ".write": "auth !== null" }, "$other": { ".read": false, ".write": false } } }

:)

About

AngualrJS Ticketing Software

License:MIT License


Languages

Language:JavaScript 87.4%Language:HTML 12.5%Language:CSS 0.1%