This is template for students to contribute and use
###Property Hunting Write a console application having below features
User Registration
A user should be able to provide user details and registerInput
User details (Try to think what is needed)Output
Saved user details
Add Property
A registered user should be able to add a property that he want to rent/sellInput
Property detailsOutput
Saved property
Search Property
Properties can be searched based on parametersInput
- Property name
- Property type (1 bhk/2 bhk etc.)
- Property size range (20 to 30 sqm or 30 to 50 sqm etc.)
- Think about more parameters
Output
Property list meeting the criteria with the user details
**(BONUS)** Make Appointment
Make appointment with the person who listedInput
PropertyId, requester details, suitable time etc.Output
Appointment details like Listing owner, appointment time, requester details etc.
Steps to run container
1. Open terminal
2. Go under docker folder and execute command
docker-compose up
3. To check status of mysql server, execute
docker-compose ps
4. To stop container, execute
docker-compose down
5. To connect to mysql via. command line
docker exec -it mysql /bin/bash
mysql -uroot -pmysql_pass
6. To test a query
select * from agoda_workshop.workshop_table;