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
- Host: GitHub
- URL: https://github.com/tylerpetri/react-restaurant-interview
- Owner: TylerPetri
- Created: 2024-09-04T18:26:17.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-09-04T19:56:49.000Z (9 months ago)
- Last Synced: 2025-02-16T02:45:40.928Z (3 months ago)
- Topics: javascri, junior, react
- Language: JavaScript
- Homepage:
- Size: 370 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```