Skip to content

Commit

Permalink
Merge pull request boostcampaitech6#4 from boostcampaitech6/feat/web-…
Browse files Browse the repository at this point in the history
…frontend

[FEAT] Frontend Code Merge
  • Loading branch information
taeyang916 authored Mar 27, 2024
2 parents aadd572 + d713efc commit cf2433c
Show file tree
Hide file tree
Showing 79 changed files with 9,608 additions and 0 deletions.
12 changes: 12 additions & 0 deletions frontend/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env
.env.*
!.env.example
.vercel
.output
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
1 change: 1 addition & 0 deletions frontend/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
engine-strict=true
13 changes: 13 additions & 0 deletions frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM node:18 as build

WORKDIR /app

COPY package.json ./
COPY package-lock.json ./
RUN npm install
RUN npm install -g pm2

COPY . ./
RUN npm run build

#CMD ["pm2-runtime", "start", "./build/index.js", "--env", "production"]
Loading

0 comments on commit cf2433c

Please sign in to comment.