Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lyestarzalt/ticketing_application
https://github.com/lyestarzalt/ticketing_application
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/lyestarzalt/ticketing_application
- Owner: lyestarzalt
- License: mit
- Created: 2023-02-20T18:40:12.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-02-24T08:06:56.000Z (almost 2 years ago)
- Last Synced: 2023-11-14T04:35:28.748Z (about 1 year ago)
- Language: Dart
- Size: 68.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ticketing Website
This is a ticketing website built with Flutter, consisting of two views: a client view for customers to obtain tickets, and a management view for staff to manage the ticketing process.
A demo of the website can be found at
## How to Build and Run
### Setting up the Firebase Project
To use the ticketing application, you'll need to set up a Firebase project and configure the necessary authentication and database settings. The schema for the counters and tickets collections should look like this:
- counters
- counter1
- current_ticket: 0
- is_online: true
- last_ticket: 6
- status: trueadd other 3 counters...
- tickets
- randomID
- counter_number: null
- ticket_number: 17
- timestamp: EPOCH### To build and run the website, follow these steps
1. Make sure you have Flutter installed. See [Flutter documentation](https://flutter.dev/docs/get-started/install) for installation instructions.
2. Clone the repository:
`git clone https://github.com/lyestarzalt/ticketing_application`
1. Install the required dependencies:
`flutter pub get`1. Build the website using the following command:
`flutter build web --release`1. Run the website in Chrome using the following command:
`flutter run -d chrome --release`## Contributions
Contributions to the ticketing website are welcome. If you have any feature requests, bug reports, or suggestions for improvement, please submit them as issues on the GitHub repository.
## License
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.