Nom Nom Notifier is a command-line application with a graphical interface designed to streamline customer management for small eateries and restaurants. It allows restaurant teams to efficiently manage customer details for delivery and service purposes.
- Add: Add new customer details such as name, phone number, email, address, and postal code. Optionally, add tags for further categorization.
- Delete: Remove customer details by index.
- Clear: Remove all customers from the address book.
- Edit: Modify existing customer details.
- List: Display all customers in the address book.
- Download: Export customer details to a CSV file.
- Find: Find a customer by name, number, email address, address, postal code or tags.
- Help: Display help information.
- Exit: Close the application.
After running the application, you can enter commands to manage your address book. Below is a list of commands and their usage.
- Add a Contact
Example:
add n/NAME p/PHONE_NUMBER e/EMAIL a/ADDRESS pc/POSTAL_CODE [t/TAG]…
add n/John Doe p/98765432 e/johnd@example.com a/John street, block 123, #01-01 pc/666234
- Delete a Contact
Example:
delete INDEX
delete 1
- Find a Contact
Example:
find KEYWORD [MORE_KEYWORDS]
find James Jake
- Edit a Contact
Example:
edit INDEX [n/NAME] [p/PHONE_NUMBER] [e/EMAIL] [a/ADDRESS] [pc/POSTAL_CODE] [t/TAG]…
edit 1 n/John Doe p/98765432
- Download Contacts
Example:
download [t/TAG1] [t/TAG2] …
download t/vegan
- Help
help
- List all Contacts
list
- Clear all Contacts
clear
- Exit the Application
exit
This project is based on the AddressBook-Level3 project created by the SE-EDU initiative.