ipsc-smart-system-backend-v2
Mozilla Public License 2.0
0
stars
0
forks
source link
This is the next generation of IPSC Smart System Backend
Installation
Requirement:
- [x] PostgreSQL
- [x] Node.js
Steps:
- Clone the repository
- Install dependencies using
npm install
- Create a PostgreSQL database.
- Update the
server.config.ts
file with your database credentials.
template:
import { Config } from "src/config";
const config: Config = {
database: {
database: "",
username: "",
password: "",
host: "",
port: 0,
},
ipsc: {},
};
export default config;
- Run
npm run build
to build the project.
- Run
npm run start:prod
to start the server.