Skip to content

Commit 1684554

Browse files
committed
Initial commit
0 parents  commit 1684554

29 files changed

Lines changed: 5022 additions & 0 deletions

.gitignore

Lines changed: 169 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,169 @@
1+
### Linux template
2+
*~
3+
4+
# temporary files which can be created if a process still has a handle open of a deleted file
5+
.fuse_hidden*
6+
7+
# KDE directory preferences
8+
.directory
9+
10+
# Linux trash folder which might appear on any partition or disk
11+
.Trash-*
12+
13+
# .nfs files are created when an open file is removed but is still being accessed
14+
.nfs*
15+
16+
### Example user template template
17+
### Example user template
18+
19+
# IntelliJ project files
20+
.idea
21+
*.iml
22+
out
23+
gen
24+
### Node template
25+
# Logs
26+
logs
27+
*.log
28+
npm-debug.log*
29+
yarn-debug.log*
30+
yarn-error.log*
31+
lerna-debug.log*
32+
33+
# Diagnostic reports (https://nodejs.org/api/report.html)
34+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
35+
36+
# Runtime data
37+
pids
38+
*.pid
39+
*.seed
40+
*.pid.lock
41+
42+
# Directory for instrumented libs generated by jscoverage/JSCover
43+
lib-cov
44+
45+
# Coverage directory used by tools like istanbul
46+
coverage
47+
*.lcov
48+
49+
# nyc test coverage
50+
.nyc_output
51+
52+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
53+
.grunt
54+
55+
# Bower dependency directory (https://bower.io/)
56+
bower_components
57+
58+
# node-waf configuration
59+
.lock-wscript
60+
61+
# Compiled binary addons (https://nodejs.org/api/addons.html)
62+
build/Release
63+
64+
# Dependency directories
65+
node_modules/
66+
jspm_packages/
67+
68+
# Snowpack dependency directory (https://snowpack.dev/)
69+
web_modules/
70+
71+
# TypeScript cache
72+
*.tsbuildinfo
73+
74+
# Optional npm cache directory
75+
.npm
76+
77+
# Optional eslint cache
78+
.eslintcache
79+
80+
# Microbundle cache
81+
.rpt2_cache/
82+
.rts2_cache_cjs/
83+
.rts2_cache_es/
84+
.rts2_cache_umd/
85+
86+
# Optional REPL history
87+
.node_repl_history
88+
89+
# Output of 'npm pack'
90+
*.tgz
91+
92+
# Yarn Integrity file
93+
.yarn-integrity
94+
95+
# dotenv environment variables file
96+
.env
97+
.env.test
98+
99+
# parcel-bundler cache (https://parceljs.org/)
100+
.cache
101+
.parcel-cache
102+
103+
# Next.js build output
104+
.next
105+
out
106+
107+
# Nuxt.js build / generate output
108+
.nuxt
109+
dist
110+
111+
# Gatsby files
112+
.cache/
113+
# Comment in the public line in if your project uses Gatsby and not Next.js
114+
# https://nextjs.org/blog/next-9-1#public-directory-support
115+
# public
116+
117+
# vuepress build output
118+
.vuepress/dist
119+
120+
# Serverless directories
121+
.serverless/
122+
123+
# FuseBox cache
124+
.fusebox/
125+
126+
# DynamoDB Local files
127+
.dynamodb/
128+
129+
# TernJS port file
130+
.tern-port
131+
132+
# Stores VSCode versions used for testing VSCode extensions
133+
.vscode-test
134+
135+
# yarn v2
136+
.yarn/cache
137+
.yarn/unplugged
138+
.yarn/build-state.yml
139+
.yarn/install-state.gz
140+
.pnp.*
141+
142+
### macOS template
143+
# General
144+
.DS_Store
145+
.AppleDouble
146+
.LSOverride
147+
148+
# Icon must end with two \r
149+
Icon
150+
151+
# Thumbnails
152+
._*
153+
154+
# Files that might appear in the root of a volume
155+
.DocumentRevisions-V100
156+
.fseventsd
157+
.Spotlight-V100
158+
.TemporaryItems
159+
.Trashes
160+
.VolumeIcon.icns
161+
.com.apple.timemachine.donotpresent
162+
163+
# Directories potentially created on remote AFP share
164+
.AppleDB
165+
.AppleDesktop
166+
Network Trash Folder
167+
Temporary Items
168+
.apdisk
169+

Dockerfile

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
FROM node:18-alpine
2+
3+
RUN apk add tzdata && cp /usr/share/zoneinfo/Europe/Berlin /etc/localtime
4+
5+
WORKDIR /usr/src/app
6+
7+
COPY package.json .
8+
COPY package-lock.json .
9+
10+
RUN npm install
11+
12+
ADD . /usr/src/app
13+
14+
RUN npm run build
15+
16+
CMD [ "npm", "run", "start" ]
17+
18+
EXPOSE 3000

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# My channel Skill Server
2+
3+
This server is for the "My channel Skill"
4+
5+
## Deploy
6+
7+
- ``docker buildx build --platform linux/amd64 --tag ghcr.io/tutorialwork/my-channel/server:<tag> . --push``

0 commit comments

Comments
 (0)