Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,6 @@ INSERT INTO `ProjectSkill` VALUES
(8,28),
(9,29),
(10,29),
(11,29),
(11,30),
(1,32),
(2,32),
Expand Down Expand Up @@ -416,7 +415,7 @@ CREATE TABLE `User` (
`isPasswordChange` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `User_email_key` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
Expand All @@ -425,8 +424,6 @@ CREATE TABLE `User` (

LOCK TABLES `User` WRITE;
/*!40000 ALTER TABLE `User` DISABLE KEYS */;
INSERT INTO `User` VALUES
(1,'Renard','Alexandre','alexandre.renard98@gmail.com','$argon2id$v=19$m=65536,t=3,p=4$bBHt7RmavfL6OFTuMCBrtA$2AZEuz27nGBCy8yo+rjUfUgd6YG9Xx7odJCpNhv3dEc','admin',0);
/*!40000 ALTER TABLE `User` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
Expand All @@ -439,4 +436,4 @@ UNLOCK TABLES;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2025-06-11 19:21:03
-- Dump completed on 2025-06-11 19:38:38
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,6 @@ INSERT INTO `ProjectSkill` VALUES
(8,28),
(9,29),
(10,29),
(11,29),
(11,30),
(1,32),
(2,32),
Expand Down Expand Up @@ -416,7 +415,7 @@ CREATE TABLE `User` (
`isPasswordChange` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `User_email_key` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
Expand All @@ -425,8 +424,6 @@ CREATE TABLE `User` (

LOCK TABLES `User` WRITE;
/*!40000 ALTER TABLE `User` DISABLE KEYS */;
INSERT INTO `User` VALUES
(1,'Renard','Alexandre','alexandre.renard98@gmail.com','$argon2id$v=19$m=65536,t=3,p=4$bBHt7RmavfL6OFTuMCBrtA$2AZEuz27nGBCy8yo+rjUfUgd6YG9Xx7odJCpNhv3dEc','admin',0);
/*!40000 ALTER TABLE `User` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
Expand All @@ -439,4 +436,4 @@ UNLOCK TABLES;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2025-06-11 19:21:35
-- Dump completed on 2025-06-11 19:38:43
5 changes: 0 additions & 5 deletions backend/src/prisma/seed/projectsData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -637,11 +637,6 @@ export const projectsData = [
name: "Karma",
image: "https://img.shields.io/badge/-Karma-3A3A3A?style=flat-square&logo=karma&logoColor=white"
},
{
name: "Jest",
image:
"https://img.shields.io/badge/-Jest-FC958A?style=flat-square&logo=jest&logoColor=white",
},
{
name: "Postman",
image:
Expand Down
6 changes: 3 additions & 3 deletions frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ ENV NEXT_PUBLIC_API_TOKEN=${NEXT_PUBLIC_API_TOKEN}
ARG NEXT_PUBLIC_API_URL
ENV NEXT_PUBLIC_API_URL=${NEXT_PUBLIC_API_URL}

CMD npm run dev
# CMD npm run dev

# RUN npm run build
# CMD npm run start
RUN npm run build
CMD npm run start

# RUN if [ "$NODE_ENV" = "production" ]; then npm run build; fi
# CMD if [ "$NODE_ENV" = "production" ]; then npm run start; else npm run dev; fi