Skip to content

patriciacoelho/concierge-hotel

Repository files navigation

Concierge

Build Status License

Concierge is a web application that allows users to view hotel room prices based on selected dates.

Running the project

  • Clone project than start the container
sail up -d
  • Create a test user to API auth required routes by executing
sail artisan tin

and paste the follow code (change <YOUR-PASSWORD> for whatever you want, such as the name and email):

    User::factory()->create([
        'name' => 'Jane Doe',
        'email' => 'jane.doe@masterzeye.com',
        'password' =>  Hash::make('<YOUR-PASSWORD>'),
    ]);
  • Compiles and hot-reloads for development
sail npm run dev
  • Open http://localhost/ in a web browser to see it

P.S.: To easily test the application you can run seeders sail artisan db:seed than on the web UI set filter "Check-in" to 30 days from now. You can also run factories or add prices, rooms and hotels by API.

License

This project is an open-sourced software licensed under the MIT license.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published