Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 776 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 776 Bytes

Description

This component displays the desription for each listing in the Staybnb application.

Related Projectts

Launching the application locally

Before the microservice can be run, a MySQL database needs to be set up to store the description table. Follow the steps below to initialize a schema and populate the table.

# download dependencies
npm install

# set up MySQL schema
go to your root directory
mysql -u root < database-mysql/schema.sql

# populate database
npm run seed

# start server on localhost
npm run server-dev

# run webpack to build client bundle
npm run react-dev