Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jvitoralb/salon-scheduler-app
An interactive Bash program that uses PostgreSQL to track the customers and appointments.
https://github.com/jvitoralb/salon-scheduler-app
Last synced: about 1 month ago
JSON representation
An interactive Bash program that uses PostgreSQL to track the customers and appointments.
- Host: GitHub
- URL: https://github.com/jvitoralb/salon-scheduler-app
- Owner: jvitoralb
- Created: 2023-05-26T20:48:15.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-18T03:09:48.000Z (over 1 year ago)
- Last Synced: 2024-11-11T11:47:42.198Z (3 months ago)
- Language: Shell
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Salon Scheduler App
### This is a Bash program that simulates a Salon Scheduler App.
This app simulates a Salon Scheduler app with basic operations. Here you can schedule a Service and see all appointments for each customer.
It was built using only Shell and PostgreSQL 14.
As the app starts, it looks for a psql connection under the `PSQL` variable - `src/salon.sh` `Ln 3` and searches for a database named `salon`. In case the database doesn't exist, one is created. Then the program starts.
![]()
`1 - Services` Displays all available services
![]()
After selecting option `1`, the program asks for a phone number, which is how the app validates the user. If the number is not in the database, it also asks for the customer's name so it can be registered.
`2 - My Appointments` Displays a customer's appointments
After selecting option `2`, the program asks for a phone number to be able to look in the database for all appointments under the given user.
This was a really fun project to work on and I definally could learn a lot from it. This project was done to complete the Relational Database course on freeCodeCamp.