@@ -4,6 +4,7 @@ WORKDIR /usr/src/app
COPY . .
+RUN npm install -g npm
RUN npm install
EXPOSE $PORT
@@ -1,6 +1,7 @@
const ROLES = {
LEADER: "leader", // 房主
AGENT: "agent", // 房客
+ CUSTOMER: "customer", // 房客
};
export { ROLES };