This commit is contained in:
Michael Fatemi 2021-04-10 13:18:21 -04:00
commit 7abd6fc05a
6 changed files with 13 additions and 25 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
node_modules node_modules
dist dist
.env

View File

@ -23,6 +23,7 @@
"@types/express": "^4.17.11", "@types/express": "^4.17.11",
"@types/node": "^14.14.37", "@types/node": "^14.14.37",
"cors": "^2.8.5", "cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1", "express": "^4.17.1",
"typescript": "^4.2.4" "typescript": "^4.2.4"
} }

4
src/.env.sample Normal file
View File

@ -0,0 +1,4 @@
NODE_ENV='dev'
APP_PORT=3000
DB_USER=
DB_PASS=

View File

@ -1,31 +1,7 @@
import * as express from 'express'; import express = require('express');
const app = express(); const app = express();
app.get('/user', (req, res) => {});
app.post('/user', (req, res) => {});
app.patch('/user', (req, res) => {});
app.delete('/user', (req, res) => {});
app.get('/pool', (req, res) => {});
app.post('/pool', (req, res) => {});
app.patch('/pool', (req, res) => {});
app.delete('/pool', (req, res) => {});
app.get('/group', (req, res) => {});
app.post('/group', (req, res) => {});
app.patch('/group', (req, res) => {});
app.delete('/group', (req, res) => {});
app.get('/join_pool', (req, res) => {}); app.get('/join_pool', (req, res) => {});
app.post('/join_pool', (req, res) => {}); app.post('/join_pool', (req, res) => {});

View File

@ -1,6 +1,7 @@
{ {
"compilerOptions": { "compilerOptions": {
"outDir": "dist/", "outDir": "dist/",
"esModuleInterop": true,
}, },
"files": ["src/types.ts"], "files": ["src/types.ts"],
"include": ["src/"], "include": ["src/"],

View File

@ -150,6 +150,11 @@ destroy@~1.0.4:
resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=
dotenv@^8.2.0:
version "8.2.0"
resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a"
integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==
ee-first@1.1.1: ee-first@1.1.1:
version "1.1.1" version "1.1.1"
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"