1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-08 07:00:04 +00:00

chore: provide sas executable to docker

This commit is contained in:
Saad Jutt
2021-11-16 05:07:22 +05:00
parent f030aa1516
commit 357bccce01
10 changed files with 68 additions and 36 deletions

View File

@@ -1,5 +1,4 @@
import express from 'express'
import mongoose from 'mongoose'
import { AuthController } from '../../controllers/'
import Client from '../../model/Client'
@@ -28,32 +27,6 @@ export const populateClients = async () => {
})
}
export const connectDB = async () => {
const { MODE } = process.env
if (MODE?.trim() !== 'server') {
console.log('Running in Destop Mode, no DB to connect.')
const { sasLoc, driveLoc } = await getDesktopFields()
process.sasLoc = sasLoc
process.driveLoc = driveLoc
return
}
// NOTE: when exporting app.js as agent for supertest
// we should exlcude connecting to the real database
if (process.env.NODE_ENV !== 'test') {
mongoose.connect(process.env.DB_CONNECT as string, async (err) => {
if (err) throw err
console.log('Connected to db!')
await populateClients()
})
}
}
authRouter.post('/authorize', async (req, res) => {
const { error, value: body } = authorizeValidation(req.body)
if (error) return res.status(400).send(error.details[0].message)