Skip to content

Commit ff0011c

Browse files
committed
chore: Update environment variables and dependencies
1 parent 2fd07ab commit ff0011c

File tree

3 files changed

+235
-131
lines changed

3 files changed

+235
-131
lines changed

backend/.env.development

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
PORT=3000
1+
PORT=8080
22
JWT_SECRET="JACKSONCHENNAHEULALLEN"
33
SALT_ROUNDS=123

frontend/schema.gql

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ type Menu {
5252
permission: String!
5353
}
5454

55+
type ModelTags {
56+
tags: [String!]!
57+
}
58+
5559
type Mutation {
5660
deleteProject(projectId: String!): Boolean!
5761
login(input: LoginUserInput!): LoginResponse!
@@ -88,6 +92,7 @@ type Query {
8892
getProjectDetails(projectId: String!): Projects!
8993
getUserProjects: [Projects!]!
9094
logout: Boolean!
95+
modelTags: ModelTags!
9196
}
9297

9398
input RegisterUserInput {

0 commit comments

Comments
 (0)