Script to Start API with developer protected tokens

?
S
Bash

Injection of tokens from developers computers

1#!/bin/sh
2set -e
3echo "Starting UWHS Api (Developer)..."
4
5MONGODB_URI=mongodb+srv://xpto \
6  DB_USER=my-sa \
7  DB_PASS=my-pass \
8  CURRENT_API_VERSION=V1 \
9  PORT=3600 \
10  LOG_LEVEL=debug \
11  npm run watch
12

Created on 6/21/2020