An open API service indexing awesome lists of open source software.

https://github.com/tylerpetri/react-restaurant-interview

A React project interview from the past, here until current project is finished
https://github.com/tylerpetri/react-restaurant-interview

javascri junior react

Last synced: about 1 month ago
JSON representation

A React project interview from the past, here until current project is finished

Awesome Lists containing this project

README

        

# Schitts Creek (__*MADE YEARS AGO, SHOWCASING REACT WHILE I WRITE MY NEW PROJECT*__)

A Tropical Cafe app.

## Initial Setup

Create the PostgreSQL database (these instructions may need to be adapted for your operating system):

```
psql
CREATE DATABASE messenger;
\q
```

Update db.js to connect with your local PostgreSQL set up. The [Sequelize documentation](https://sequelize.org/master/manual/getting-started.html) can help with this.

In the server folder, install dependencies and then seed the database:

```
cd server
npm install
npm run seed
```

In the client folder, install dependencies:

```
cd client
npm install
```

### Running the Application Locally

In one terminal, start the front end:

```
cd client
npm start
```

In a separate terminal, start the back end:

```
cd server
npm run dev
```