Compare commits

...

3 Commits
demo ... main

Author SHA1 Message Date
nightly 8ae361c323 Merge branch 'main' of https://tea.nightly.town/Mangoberry/MangoShelf 2022-10-14 08:38:05 +02:00
nightly aa5fcacb46 Change to use /Server instead of /Components 2022-10-14 08:36:34 +02:00
Nightly 50794ef77a Add '.drone.yml'
continuous-integration/drone/push Build is failing Details
2022-09-21 18:43:43 +02:00
4 changed files with 12 additions and 3 deletions

9
.drone.yml Normal file
View File

@ -0,0 +1,9 @@
kind: pipeline
name: default
steps:
- name: test
image: node
commands:
- npm install
- npm test

View File

View File

@ -14,8 +14,8 @@ var site;
// TODO: Add stuff for MySQL
var connection = mysql.createConnection({
host : '192.168.0.56',
user : 'mangosdemo',
host : '127.0.0.1',
user : 'demo',
password : 'lqklvok',
database : 'mangoshelfdb'
});

View File

@ -1,2 +1,2 @@
var rws = require("./Components/webserver.js");
var rws = require("./Server/webserver.js");
rws();