Skip to content

Commit

Permalink
chore: 프론트엔드 code pipeline buildspec 작성
Browse files Browse the repository at this point in the history
  • Loading branch information
Parkhanyoung committed Aug 20, 2024
1 parent 862ed9f commit db4e02f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions frontend/buildspec.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
phases:
install:
commands:
- echo Installing dependencies...
- cd frontend
- npm install
build:
commands:
- echo Building the project...
- npm run build

artifacts:
files:
- '**/*'
base-directory: frontend/dist
name: techcourse-project-2024/develup/frontend-deploy

0 comments on commit db4e02f

Please sign in to comment.