Initial commit

TODO: change api.conf URL references to use environment variables and add these variables to the docker-compose configuration for host domain
This commit is contained in:
2023-03-28 00:08:50 -07:00
parent 2d6d44b89f
commit 9f2473801c
82 changed files with 13974 additions and 1 deletions

26
api/package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --legacy-watch -e js,json,yaml index.js",
"prod": "node index.js"
},
"author": "IndigoFox",
"license": "ISC",
"dependencies": {
"axios": "^1.3.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-bearer-token": "^2.4.0",
"express-jwt": "^8.4.1",
"mysql2": "^3.2.0",
"nodemon": "^2.0.22",
"sequelize": "^6.29.3",
"swagger-ui-express": "^4.6.2",
"yamljs": "^0.3.0"
}
}