Changes to file structure and clean up o findex.js to account for changes

This commit is contained in:
Lucas Patenaude
2024-04-30 18:58:07 -06:00
parent 1554f67a16
commit 184707de83
2 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
<img src="ProjectSourceCode/src/resources/img/logo.png" width="90%"/> <img src="images/logo.png" width="90%"/>
# Welcome to ScoreSpot # Welcome to ScoreSpot

View File

@@ -17,7 +17,7 @@ services:
- '5432:5432' - '5432:5432'
volumes: volumes:
- group-project:/var/lib/postgresql/data - group-project:/var/lib/postgresql/data
- ./src/init_data:/docker-entrypoint-initdb.d - ./init_data:/docker-entrypoint-initdb.d
web: web:
container_name: node-web-interface container_name: node-web-interface
image: node:lts image: node:lts
@@ -31,7 +31,7 @@ services:
ports: ports:
- '3000:3000' - '3000:3000'
volumes: volumes:
- ../client:/home/node/app # Mount ProjectSourceCode directory - ../client:/home/node/app # Mount Client directory
- ../client/node_modules:/home/node/app/node_modules # Mount node_modules directory - ../client/node_modules:/home/node/app/node_modules # Mount node_modules directory
command: 'npm run start' command: 'npm run start'
volumes: volumes: