Skip to content

Commit d9fc01c

Browse files
authored
Merge pull request #101 from romulosimiquel/fix/backend-dirname
Fix Backend directory name to backend lowercase.
2 parents 3995478 + bb64f5b commit d9fc01c

30 files changed

Lines changed: 13 additions & 9276 deletions

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: docker push ${{ secrets.DOCKER_USERNAME }}/frontend:latest
4646

4747
- name: Build Backend Docker image
48-
run: docker build -t ${{ secrets.DOCKER_USERNAME }}/backend:latest ./Backend
48+
run: docker build -t ${{ secrets.DOCKER_USERNAME }}/backend:latest ./backend
4949

5050

5151
- name: Run backend container

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
22

33
# dependencies
4-
/Backend/node_modules
4+
/backend/node_modules
55
/frontend/node_modules
66

7-
/Backend/bun.lock
7+
/backend/bun.lock
88
/frontend/bun.lock
99
/pnp
1010
.pnp.js
@@ -32,7 +32,7 @@ yarn-error.log*
3232

3333
.env
3434
frontend/.env
35-
Backend/.env
35+
backend/.env
3636

3737
package.json
3838
package-lock.json

.husky/pre-commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env sh
22
. "$(dirname -- "$0")/_/husky.sh"
33

4-
cd frontend && npx lint-staged && cd ../Backend && npx lint-staged
4+
cd frontend && npx lint-staged && cd ../backend && npx lint-staged

0 commit comments

Comments
 (0)