This is a database-driven Bash application designed to manage salon appointments. It utilizes PostgreSQL for data persistence and a Bash script for the user interface, allowing users to browse services, register as customers, and book appointments.
- Interactive CLI (Command Line Interface).
- Relational Database schema with customers, services, and appointments tables.
- Customer record tracking via phone numbers.
- Automated appointment scheduling with service association.
- PostgreSQL
- Bash Scripting
- Git/GitHub
salon.sh: The main interactive Bash script.salon.sql: The database dump file used to restore the schema and data.
- Ensure you have PostgreSQL installed and running.
- Restore the database:
psql -U <username> < salon.sql