Skip to content

Commit 4bc0d5f

Browse files
authored
Merge branch 'main' into develop
Signed-off-by: Mayank Singh Kushwah <[email protected]>
2 parents fe27f7e + 2115c09 commit 4bc0d5f

15 files changed

+178
-72
lines changed

.devcontainer/.env

Lines changed: 0 additions & 7 deletions
This file was deleted.

.devcontainer/devcontainer.json

Lines changed: 0 additions & 35 deletions
This file was deleted.

.devcontainer/postCreateCommands.sh

Lines changed: 0 additions & 15 deletions
This file was deleted.

.env_sample

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,9 @@ DB_DIALECT=mysql
88
DB_POOL_MAX=5
99
DB_POOL_MIN=0
1010
DB_POOL_ACQUIRE=30000
11-
DB_POOL_IDLE=10000
11+
DB_POOL_IDLE=10000
12+
NODE_ENV=development
13+
APP_PORT=80
14+
PHPMYADMIN_PORT=8081
15+
16+
GIT_USERNAME=msrajawat298

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ web_modules/
8080
.env.test.local
8181
.env.production.local
8282
.env.local
83-
!.devcontainer/.env
83+
8484
# parcel-bundler cache (https://parceljs.org/)
8585
.cache
8686
.parcel-cache

.husky/pre-commit

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
npm run lint
2-
npx lint-staged
3-
npm run test:coverage
1+
npx lint-staged

.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"dbaeumer.vscode-eslint"
4+
]
5+
}

.vscode/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"cSpell.words": [
3+
"Vitabletech"
4+
]
5+
}

coverage/lcov.info

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ DA:11,0
1111
DA:12,0
1212
LF:5
1313
LH:0
14-
BRF:0
14+
BRDA:10,0,0,0
15+
BRDA:10,0,1,0
16+
BRF:2
1517
BRH:0
1618
end_of_record
1719
TN:

.devcontainer/docker-compose.yml renamed to docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services:
77
volumes:
88
- .:/app
99
working_dir: /app
10-
command: bash -c "tail -f /dev/null"
10+
command: bash -c "chmod +x ./setup.sh && ./setup.sh"
1111
ports:
1212
- "${APP_PORT}:${PORT}" # Use the port number defined in .env for the host
1313
env_file:

0 commit comments

Comments
 (0)