Initial Commit

+ Dockerization
+ Git Setup
+ Example Files
+ HandleBars Setup
+ Express Logic
+ Folder Structure
+ LICENSE
+ Public Folder
This commit is contained in:
2022-05-10 00:15:45 +03:00
commit 1b8292dc50
25 changed files with 3209 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM node:18-alpine
# Create app directory
WORKDIR /app
# Bundle app source
COPY . .
# Install Requirements and build the app
RUN npm install && npm run build;
EXPOSE 5386
CMD [ "npm", "run", "start" ]