users page + db auto create(WIP)

Created users info page when viewing user data on user tab

Added DB Procs to retrieve data for those components

Added db auto initialize to the backend in preparation for docker images, this needs work as it still crashes if it cant connect to the db
This commit is contained in:
Thegan Govender
2023-03-23 22:37:04 +02:00
parent 4c4fcd04d5
commit dc3f900c5a
30 changed files with 1302 additions and 238 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM node:14-alpine
RUN mkdir /app
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY ./ ./
EXPOSE 3000
CMD ["npm", "run", "start-app"]