| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
⚠️ DISCLAIMER: This was a proof of concept demo and not all proper security methods were observed. Use caution using in a production environment!
Welcome to the Ticket Dispatch System! This project is a web-based platform for dispatching tickets and technicians. Users can create tickets and assign them to technicians, and technicians can access and dispatch tickets from their easily accessible Google Maps window.
$ git clone https://github.com/dustingriffie/dispatch-react-demo.git
$ npm install
$ touch .env.local
REACT_APP_GOOGLE_API_KEY=YOUR_GOOGLE_API_KEY
REACT_APP_FIREBASE_API_KEY=YOUR_FIREBASE_API_KEYconst firebaseConfig = {
apiKey: process.env.NEXT_PUBLIC_FIREBASE_API_KEY,
authDomain: "XXX",
databaseURL: "XXX",
projectId: "XXX",
storageBucket: "XXX",
messagingSenderId: "XXX",
appId: "XXX"
}export const fireConfig = {
"type": "XXX",
"project_id": "XXX",
"private_key_id": "XXX",
"private_key": "XXX",
"client_email": "XXX",
"client_id": "XXX",
"auth_uri": "XXX",
"token_uri": "XXX",
"auth_provider_x509_cert_url": "XXX",
"client_x509_cert_url": "XXX"
}$ npm run dev
That's it! You are now ready to use the Ticket Dispatch System. Start creating tickets, assigning them to technicians, and view them on the Google Maps window. Enjoy!
| Back | FazBrowse Home | New Git URL |