Skip to content

Commit 8310895

Browse files
BackendExpertJehanKandyAnupa1998
committed
Update index.js
Co-Authored-By: JehanKandy <jehankandy@gmail.com> Co-Authored-By: Anupa Gamage <125038143+Anupa1998@users.noreply.github.com>
1 parent e3b6f25 commit 8310895

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

index.js

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,25 @@ async function RunReactLoginSignInTW() {
5555
async function RunBackendMysqlNoMVC() {
5656
try {
5757
await fs.copy(sourceBackendMysqlNoMVC, destinationBackendMysqlNoMVC);
58-
console.log('Backend Development Enviroment Created Successful');
58+
console.log('Backend Development (Mysql without MVC) Enviroment Created Successful');
5959
} catch (err) {
6060
console.error('Error copying folder:', err);
6161
}
6262
}
6363

64+
async function RunBackendMysqlMVC() {
65+
try {
66+
await fs.copy(sourceBackendMysqlMVC, destinationBackendMysqlMVC);
67+
console.log('Backend Development (Mysql with MVC) Enviroment Created Successful');
68+
} catch (err) {
69+
console.error('Error copying folder:', err);
70+
}
71+
}
72+
73+
6474
module.exports = {
6575
RunReactLoginSignIn,
6676
RunReactLoginSignInTW,
67-
RunBackendMysqlNoMVC
77+
RunBackendMysqlNoMVC,
78+
RunBackendMysqlMVC
6879
}

0 commit comments

Comments
 (0)