a mapping app that allows users to find temporary housing in their local area
** Technologies ** : React, Express, Sql, Node
Download Sequel Pro
(https://sequelpro.com)
Open Sequel Pro
and enter the following to establish a connection:
```
Host: 127.0.0.1
Username: root
``` Create a new database named `sub-house` Within the `sub-house` database, create one table: `listings`
- In `listings` table, add these columns: `title`, `price`, `location`, `link`
### Application Setup:
Go onto your desktop and then clone this repo to your local machine
cd desktop
and git clone https://github.com/c0mputer-junkie/sub-house.git
Go into that project folder
cd sub-house
Install all dependencies
npm i
or
yarn
Run yarn start
or npm start
(this will run both the client and server)
npm install --save-dev nodemon
nodemon run server.js