Module for the booking component of Airbnb clone.
Default port is 3000
Express serving static files out of components/public
MySQL database, important documents in db folder
MySQL db can be initialized with mysql -u < <path/to/schema.sql>
Database is seeded with seed.js file. The ids and foreign of the MySQL are hard-coded by the seed file because this is dummy data.
The guest module allows the users to select the number of adults, children and infants that they wish to book the rental for. The number of adults and children count towards the max number that can be added.
IN PROGRESS