initialized project
This commit is contained in:
parent
f42c6dc028
commit
545cf0cf50
7
AuthentesBackend/.gitignore
vendored
Normal file
7
AuthentesBackend/.gitignore
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
node_modules
|
||||
dist
|
||||
package-lock.json
|
||||
storage
|
||||
.env
|
||||
tmp
|
||||
*/*.log
|
18
AuthentesBackend/package.json
Normal file
18
AuthentesBackend/package.json
Normal 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"
|
||||
}
|
||||
}
|
11
AuthentesBackend/src/index.js
Normal file
11
AuthentesBackend/src/index.js
Normal 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}!`)
|
||||
});
|
0
AuthentesBackend/src/models/.folderRoute
Normal file
0
AuthentesBackend/src/models/.folderRoute
Normal file
0
AuthentesBackend/src/routes/.folderRoute
Normal file
0
AuthentesBackend/src/routes/.folderRoute
Normal file
Loading…
x
Reference in New Issue
Block a user