Bark BnB is a clone of a popular short-term homestay web app, but for dogs. Pups can view available rooms, make reservations, and leave reviews with ratings on rooms that they have reserved.
Bark BnB was created with Ruby 3.1.1 on Rails 7.0.4. on a postgreSQL server, and makes use of both the bcrypt gem and the shrine gem.
This app is currently in development, but can be cloned and run on a local server.
Navigate to your desired directory and use command,
git clone https://github.com/kyle-pazdel/say-what.gitthen bundle install all dependencies with,
bash/bundle installrun the following commands to create a rails database and migrate.
bash/rails db:create
bash/rails db:migrateShould you with to use the pup-themed seed data for both users and rooms, run the following command.
bash/rails db:seedTo execute a local instance of Bark BnB start a rails server with
bash/rails serverand in your browser navigate to the default Rails server location http://localhost:3000


