This commit is contained in:
Killer Boss Original 2022-07-09 23:31:45 +02:00 committed by GitHub
parent 79fa135301
commit 05db13018d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 19 deletions

View file

@ -1,18 +0,0 @@
name: Database
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)

View file

@ -106,7 +106,7 @@ async function searchElement(request, response) {
app.post('/api/database/set', async (request, response) => {
console.log('\n\n\n\n\n\n\n\n\n\n\n\n\n\n'+request)
reply = 'Ok'
await db.set('Output', request)
//await db.set('Output', request)
response.send(reply);
});