-
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added dev container setup * add dev container * update readme * add changed dockerfile * fix PATH in Dockerfile * Update README.md --------- Co-authored-by: Jerome Hardaway <[email protected]>
- Loading branch information
1 parent
bc3db7e
commit ca00b39
Showing
5 changed files
with
21,991 additions
and
618 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"name": "Vets-Who-Code", | ||
"image": "vets-who-code:latest", | ||
"workspaceFolder": "/src", | ||
"mounts": [ | ||
"source=${localWorkspaceFolder},target=/src,type=bind,consistency=cached", | ||
"source=node_modules,target=/src/node_modules,type=volume" | ||
], | ||
"customizations": { | ||
"vscode": { | ||
"settings": { | ||
"terminal.integrated.shell.linux": "/bin/bash" | ||
}, | ||
"extensions": [ | ||
"dbaeumer.vscode-eslint", | ||
"ms-vscode.vscode-typescript-tslint-plugin" | ||
] | ||
} | ||
}, | ||
"forwardPorts": [3000], | ||
"postCreateCommand": "npm install" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM node:18 | ||
|
||
# Set working directory | ||
WORKDIR /src | ||
|
||
# Install dependencies | ||
COPY package*.json ./ | ||
RUN npm install | ||
|
||
# Add node_modules bin to PATH | ||
ENV PATH /src/node_modules/.bin:$PATH |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
ca00b39
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
vets-who-code-app – ./
vetswhocode.io
vets-who-code-app-vetswhocode-web-app.vercel.app
vets-who-code-app-git-master-vetswhocode-web-app.vercel.app
vets-who-code-app-ten.vercel.app