Dragon-Custom / ipsc-smart-system-backend-v2

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:

Steps:

  1. Clone the repository
  2. Install dependencies using npm install
  3. Create a PostgreSQL database.
  4. 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;
  5. Run npm run build to build the project.
  6. Run npm run start:prod to start the server.