index.js 1.1 KB
Newer Older
Kim, Subin's avatar
Kim, Subin committed
1
import dotenv from "dotenv";
한규민's avatar
한규민 committed
2
import { sequelize, Role } from "./db/index.js";
Kim, Subin's avatar
Kim, Subin committed
3
4
import app from "./app.js";
import appConfig from "./config/app.config.js";
한규민's avatar
한규민 committed
5
import { ROLE_NAME } from './models/role.model.js';
Kim, Subin's avatar
Kim, Subin committed
6
7
8
9
10
11
12

dotenv.config({
    path: `${process.env.NODE_ENV === "production" ? ".env" : ".env.development"
        }`,
});

sequelize
Jiwon Yoon's avatar
Jiwon Yoon committed
13
    .sync({ force: true })
Kim, Subin's avatar
Kim, Subin committed
14
    .then(async () => {
한규민's avatar
한규민 committed
15
16
17
18
19
        await Promise.all(
            Object.keys(ROLE_NAME).map((name) => {
                return Role.create({ name });
            })
        );
Kim, Subin's avatar
Kim, Subin committed
20
21
22
23

        // const adminRole = await Role.findOne({ where: { name: "admin" } });

        // await User.create({
한규민's avatar
context    
한규민 committed
24
25
26
27
        //     userId: "admin",
        //     nickname: "admin@example.com",
        //     birth: "990926",
        //     phoneNumber: "01086074580",
Kim, Subin's avatar
Kim, Subin committed
28
29
30
31
32
33
34
35
36
37
38
39
        //     password: "admin!",
        //     isMember: true,
        //     roleId: adminRole?.id,
        // });

        app.listen(appConfig.port, () => {
            console.log(`Server is running on port ${appConfig.port}`);
        });
    })
    .catch((err) => {
        console.log(err);
    });
한규민's avatar
한규민 committed
40
41

    export default {}