Skip to content

Commit

Permalink
Added backend structure
Browse files Browse the repository at this point in the history
  • Loading branch information
bgorman87 committed Jul 13, 2024
1 parent 6b9133f commit 8c74e91
Show file tree
Hide file tree
Showing 39 changed files with 1,225 additions and 136 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
devAssets
devAssets
**/node_modules
13 changes: 13 additions & 0 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM node:22.4.0

WORKDIR /usr/src/app

COPY package*.json ./

RUN npm install

COPY . .

EXPOSE 3000

CMD ["npm", "start"]
Loading

0 comments on commit 8c74e91

Please sign in to comment.