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
name: Running Tests | |
on: [push] | |
jobs: | |
Test: | |
runs-on: ubuntu-latest | |
services: | |
postgres: |
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
http { | |
upstream all { | |
server localhost:8081; | |
server localhost:8080; | |
} | |
server{ | |
listen 80; |
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
events { | |
} | |
http { | |
server{ | |
listen 80; | |
proxy_set_header Host $host; |
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
const express = require("express"); | |
const app = express(); | |
const cors = require("cors"); | |
const bp = require("body-parser"); | |
const fetch = require("node-fetch"); | |
app.use(cors()); | |
app.use(bp.urlencoded({ extended: false })); | |
app.use(bp.json()); | |
app.use(require("morgan")("dev")); |
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
const express = require("express"); | |
const app = express(); | |
const port = process.env.PORT || 3001; | |
const bodyParser = require("body-parser"); | |
app.use(bodyParser.urlencoded({ extended: false })); | |
app.use(bodyParser.json()); |
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
fread = open("e_so_many_books.txt", "r") | |
# print(fread.read()) | |
librarylist = [] | |
basicData = fread.readline() | |
line2 = fread.readline() | |
print(basicData[2]) | |
print(line2) |
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
sudo apt update | |
sudo apt install default-jre | |
sudo apt install default-jdk | |
sudo apt install openjdk-8-jdk |
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
const express = require("express"); | |
const bp = require("body-parser"); | |
const port = 5000; | |
const app = express(); | |
const fs = require("fs"); | |
const multer = require("multer"); | |
app.use(bp.urlencoded({ extended: false })); | |
app.use(bp.json()); |
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
const express = require("express"); | |
const bp = require("body-parser"); | |
const port = 5000; | |
const app = express(); | |
const multer = require("multer"); | |
app.use(bp.urlencoded({ extended: false })); | |
app.use(bp.json()); |
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
const express = require("express"); | |
const bp = require("body-parser"); | |
const port = 5000; | |
const app = express(); | |
app.use(bp.urlencoded({ extended: false })); | |
app.use(bp.json()); | |
app.use(require("morgan")("dev")); |
NewerOlder