Compare commits
	
		
			3 Commits
		
	
	
		
			0d3c62c6ad
			...
			b1c581ca6e
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| b1c581ca6e | |||
| 96189c2392 | |||
| 700353cff4 | 
@@ -2,13 +2,13 @@ FROM node:alpine as files
 | 
				
			|||||||
ENV TZ="Europe/Berlin"
 | 
					ENV TZ="Europe/Berlin"
 | 
				
			||||||
WORKDIR /app
 | 
					WORKDIR /app
 | 
				
			||||||
COPY [ "package-lock.json", "package.json", "index.ts", "tsconfig.json", "./" ]
 | 
					COPY [ "package-lock.json", "package.json", "index.ts", "tsconfig.json", "./" ]
 | 
				
			||||||
COPY server ./server
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
FROM files as proddependencies
 | 
					FROM files as proddependencies
 | 
				
			||||||
ENV NODE_ENV=production
 | 
					ENV NODE_ENV=production
 | 
				
			||||||
RUN npm ci --omit=dev
 | 
					RUN npm ci --omit=dev
 | 
				
			||||||
 | 
					
 | 
				
			||||||
FROM proddependencies as compile 
 | 
					FROM proddependencies as compile 
 | 
				
			||||||
 | 
					COPY server ./server
 | 
				
			||||||
RUN npm run build
 | 
					RUN npm run build
 | 
				
			||||||
CMD ["npm","run","start"]
 | 
					CMD ["npm","run","start"]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -16,6 +16,7 @@ FROM files as dependencies
 | 
				
			|||||||
RUN npm ci
 | 
					RUN npm ci
 | 
				
			||||||
 | 
					
 | 
				
			||||||
FROM dependencies as test
 | 
					FROM dependencies as test
 | 
				
			||||||
 | 
					COPY server ./server
 | 
				
			||||||
COPY jest.config.js .
 | 
					COPY jest.config.js .
 | 
				
			||||||
COPY tests ./tests
 | 
					COPY tests ./tests
 | 
				
			||||||
RUN npm run test
 | 
					RUN npm run test
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -7,6 +7,7 @@ module.exports = {
 | 
				
			|||||||
		'^.+\\.tsx?$': 'ts-jest'
 | 
							'^.+\\.tsx?$': 'ts-jest'
 | 
				
			||||||
	},
 | 
						},
 | 
				
			||||||
	'testRegex': '(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$',
 | 
						'testRegex': '(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$',
 | 
				
			||||||
 | 
						'setupFiles': ["<rootDir>/tests/testenv.js"],
 | 
				
			||||||
	'moduleFileExtensions': [
 | 
						'moduleFileExtensions': [
 | 
				
			||||||
		'ts',
 | 
							'ts',
 | 
				
			||||||
		'tsx',
 | 
							'tsx',
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -34,7 +34,7 @@
 | 
				
			|||||||
		"monitor": "nodemon build/index.js",
 | 
							"monitor": "nodemon build/index.js",
 | 
				
			||||||
		"lint": "eslint . --ext .ts",
 | 
							"lint": "eslint . --ext .ts",
 | 
				
			||||||
		"lint-fix": "eslint . --ext .ts --fix",
 | 
							"lint-fix": "eslint . --ext .ts --fix",
 | 
				
			||||||
    "test": "jest",
 | 
							"test": "jest --runInBand",
 | 
				
			||||||
		"test-watch": "jest --watch"
 | 
							"test-watch": "jest --watch"
 | 
				
			||||||
	},
 | 
						},
 | 
				
			||||||
	"devDependencies": {
 | 
						"devDependencies": {
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										15
									
								
								tests/testenv.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										15
									
								
								tests/testenv.js
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,15 @@
 | 
				
			|||||||
 | 
					process.env.CLIENT_ID = "CLIENT_ID"
 | 
				
			||||||
 | 
					process.env.SECRET = "SECRET"
 | 
				
			||||||
 | 
					process.env.BOT_TOKEN = "BOT_TOKEN"
 | 
				
			||||||
 | 
					process.env.WATCHER_ROLE = "WATCHER_ROLE"
 | 
				
			||||||
 | 
					process.env.ADMIN_ROLE = "ADMIN_ROLE"
 | 
				
			||||||
 | 
					process.env.CHANNEL_ID = "CHANNEL_ID"
 | 
				
			||||||
 | 
					process.env.WATCHPARTY_ANNOUNCEMENT_ROLE = "WATCHPARTY_ANNOUNCEMENT_ROLE"
 | 
				
			||||||
 | 
					process.env.YAVIN_JELLYFIN_URL = "YAVIN_JELLYFIN_URL"
 | 
				
			||||||
 | 
					process.env.YAVIN_COLLECTION_ID = "YAVIN_COLLECTION_ID"
 | 
				
			||||||
 | 
					process.env.YAVIN_COLLECTION_USER = "YAVIN_COLLECTION_USER"
 | 
				
			||||||
 | 
					process.env.YAVIN_TOKEN = "YAVIN_TOKEN"
 | 
				
			||||||
 | 
					process.env.TOKEN = "TOKEN"
 | 
				
			||||||
 | 
					process.env.JELLYFIN_USER = "JELLYFIN_USER"
 | 
				
			||||||
 | 
					process.env.JELLYFIN_COLLECTION_ID = "JELLYFIN_COLLECTION_ID"
 | 
				
			||||||
 | 
					process.env.JELLYFIN_URL = "JELLYFIN_URL"
 | 
				
			||||||
		Reference in New Issue
	
	Block a user