This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
declare -a fonts=( | |
BitstreamVeraSansMono | |
CodeNewRoman | |
DroidSansMono | |
FiraCode | |
FiraMono | |
Go-Mono | |
Hack |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[mkdir] Created dir: /opt/shared/GitCode/Backend/ra-flms/build/empty | |
[mkdir] Created dir: /opt/shared/GitCode/Backend/ra-flms/build/generated-sources/ap-source-output | |
[javac] Compiling 794 source files to /opt/shared/GitCode/Backend/ra-flms/build/classes | |
[javac] /opt/shared/GitCode/Backend/ra-flms/src/java/com/ra/flms/linebarger/merge/LineBarger.java:22: error: package org.apache.http.client.fluent does not exist | |
[javac] import org.apache.http.client.fluent.Request; | |
[javac] ^ | |
[javac] /opt/shared/GitCode/Backend/ra-flms/src/java/com/ra/flms/linebarger/merge/LineBarger.java:25: error: package javax.json does not exist | |
[javac] import javax.json.Json; | |
[javac] ^ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// the main app file | |
import express from "express"; | |
import loadDb from "./loadDb"; // dummy middleware to load db (sets request.db) | |
import authorize from "./authorization"; // middleware for doing authorization | |
import permit from "./permission"; // middleware for checking if user's role is permitted to make request | |
let app = express(), | |
api = express.Router(); | |
// first middleware will setup db connection |