Skip to content

Commit 247f9b4

Browse files
authored
Merge pull request #56 from LordDashMe/1.1.0
1.1.0
2 parents 5a5386e + 57c8994 commit 247f9b4

File tree

5 files changed

+3135
-3344
lines changed

5 files changed

+3135
-3344
lines changed

docker-compose.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
version: '3.4'
1+
version: '3.9'
22
services:
33
app:
4+
container_name: 'github-contribution-stats-app'
45
tty: true
56
stdin_open: true
6-
image: 'node:10-alpine'
7+
image: 'node:20-alpine'
78
volumes:
8-
- '.:/var/www/site/'
9+
- '.:/app/'
10+
networks:
11+
- default
912
networks:
1013
default:
11-
external:
12-
name: '${DOCKER_HOST_PRE_DEFINED_NETWORK}'
14+
name: 'github-contribution-stats_network'

env-sample

-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
DOCKER_HOST_PRE_DEFINED_NETWORK=
21
GITHUB_PERSONAL_ACCESS_TOKEN=

jest.config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ module.exports = {
99
"src/*",
1010
"!**/node_modules/**",
1111
],
12-
"coverageDirectory": "jest-coverage"
12+
"coverageDirectory": "jest-coverage",
13+
"testEnvironment": "jsdom"
1314
};

0 commit comments

Comments
 (0)