Try this!

This commit is contained in:
2024-12-03 22:02:20 -05:00
parent 9d8ad03594
commit b8741cc411
4 changed files with 5209 additions and 3 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.vscode/settings.json

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM node:18
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD ["npm", "start"]

5198
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -1,5 +1,5 @@
{ {
"name": "urge-api", "name": "looking-api",
"version": "0.1.0", "version": "0.1.0",
"private": true, "private": true,
"scripts": { "scripts": {
@@ -37,7 +37,7 @@
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "gitolite@honey.fitz.guru:gcsdb-api.git" "url": "git@git.mifi.dev:12022/mifi/Pfosi-Looking-API.git"
}, },
"keywords": [ "keywords": [
"Timberland", "Timberland",
@@ -45,6 +45,6 @@
"GCS", "GCS",
"database" "database"
], ],
"author": "Mike Fitzpatrick (mike@fitz.guru)", "author": "Mike Fitzpatrick (badmf@mifi.dev)",
"license": "ISC" "license": "ISC"
} }