Skip to content

Latest commit

 

History

History
83 lines (53 loc) · 1.44 KB

README.md

File metadata and controls

83 lines (53 loc) · 1.44 KB

우아한테크캠프 KIOSK 프로젝트

title

데모링크 http://52.79.251.179
개발기간 2022.08.01 ~ 2022.08.12 (리팩터링 기간 제외)

시연 화면

슬라이드

kiosk-2

장바구니

kiosk-1

에러화면

kiosk-3

주문 및 결제

Getting Started

1. Clone & Install Packages

git clone https://github.com/woowa-techcamp-2022/web-moneybook-03.git

cd client
npm install

cd ../server
npm install

cd ../graphql
npm install

2. Setup Environment Variables

# client root에 .env 파일 생성

##rest api server
REACT_APP_BACK_BASE_URL= 
##graphql server
REACT_APP_GRAPHQL_URL= 
# server root에 .env 파일 생성

MYSQL_HOST=
MYSQL_USER=
MYSQL_PASSWORD=
MYSQL_DATABASE=
MYSQL_PORT=
PORT=

3. Run Application

# ./client
npm run start:dev

# ./server
npm run start

# ./graphql
npm run dev

ERD

image