Skip to content

Commit

Permalink
🎉 Begin control panel + add decoy form
Browse files Browse the repository at this point in the history
  • Loading branch information
TarradeMarc committed Nov 15, 2024
1 parent 4a15a26 commit 5ef6ba9
Show file tree
Hide file tree
Showing 117 changed files with 19,432 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}\\controlpanel\\api\\server.js",
"outFiles": [
"${workspaceFolder}/**/*.js"
]
}
]
}
1 change: 1 addition & 0 deletions controlpanel/api/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
7 changes: 7 additions & 0 deletions controlpanel/api/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM node:21-alpine
WORKDIR /app
COPY . /app
RUN npm install
USER nobody
EXPOSE 8050
CMD [ "node", "server.js" ]
Loading

0 comments on commit 5ef6ba9

Please sign in to comment.