initialized project

This commit is contained in:
Ryan Bakkes 2022-03-20 11:01:30 +01:00
parent f42c6dc028
commit 545cf0cf50
5 changed files with 36 additions and 0 deletions

7
AuthentesBackend/.gitignore vendored Normal file
View File

@ -0,0 +1,7 @@
node_modules
dist
package-lock.json
storage
.env
tmp
*/*.log

View File

@ -0,0 +1,18 @@
{
"name": "authentesbackend",
"version": "1.0.0",
"description": "Authentes fyr Backend Server",
"main": "index.js",
"scripts": {
"tsc": "tsc",
"test": "\"echo \\\"Error: no test specified\\\" && exit 1\"",
"deploy": "node",
"okidoki": "echo 'test'"
},
"author": "Spekulaas",
"license": "ISC",
"dependencies": {
"dotenv": "^16.0.0",
"express": "^4.17.2"
}
}

View File

@ -0,0 +1,11 @@
const express = require('express')
const app = express();
const port = 3000;
app.get('/', (req, res) => {
res.send('Hello World!')
});
app.listen(port, () => {
console.log(`Example app listening on port ${port}!`)
});

View File

View File