sub-house

a mapping app that allows users to find temporary housing in their local area

** Technologies ** : React, Express, Sql, Node

MySQL Database setup

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:

  1. 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

  2. Go into that project folder

    cd sub-house

  3. Install all dependencies

    npm i or

    yarn

  4. Run yarn start or npm start (this will run both the client and server)

running express

  1. install nodemon npm install --save-dev nodemon
  2. to Run nodemon nodemon run server.js

Current features:

Later features:

subhouseimage