File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed
Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -55,14 +55,25 @@ async function RunReactLoginSignInTW() {
5555async 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+
6474module . exports = {
6575 RunReactLoginSignIn,
6676 RunReactLoginSignInTW,
67- RunBackendMysqlNoMVC
77+ RunBackendMysqlNoMVC,
78+ RunBackendMysqlMVC
6879}
You can’t perform that action at this time.
0 commit comments