Skip to content

Commit 9dd6ed2

Browse files
committed
Adds *Special Thanks* section to README (#46)
Initially mentioning @JNSAPH and @NudelErde <3 (the GitHub Bot sadly didn't work)
1 parent b0acc55 commit 9dd6ed2

File tree

3 files changed

+59
-1
lines changed

3 files changed

+59
-1
lines changed

.all-contributorsrc

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"projectName": "Apollo",
3+
"projectOwner": "ApolloFiles",
4+
"repoType": "github",
5+
"files": [
6+
"README.md"
7+
],
8+
"imageSize": 100,
9+
"commit": false,
10+
"commitConvention": "none",
11+
"contributors": [
12+
{
13+
"login": "JNSAPH",
14+
"name": "Jonas",
15+
"avatar_url": "https://avatars.githubusercontent.com/u/35976079?v=4",
16+
"profile": "https://github.com/JNSAPH",
17+
"contributions": [
18+
"design",
19+
"ideas"
20+
]
21+
},
22+
{
23+
"login": "NudelErde",
24+
"name": "NudelErde",
25+
"avatar_url": "https://avatars.githubusercontent.com/u/37987062?v=4",
26+
"profile": "https://github.com/NudelErde",
27+
"contributions": [
28+
"code",
29+
"userTesting",
30+
"ideas"
31+
]
32+
}
33+
],
34+
"contributorsPerLine": 7
35+
}

README.md

+19
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,22 @@ Probably create a GitHub organisation `ApolloFiles` and have the following repos
2020
* FTP(S), SSH, WebDAV, ...
2121
* Some kind of Watch-Party where you can share a link with friends and family to view images/videos together
2222
* [x] Trash bin
23+
24+
25+
## Special Thanks ✨
26+
Special thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
27+
28+
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
29+
<!-- prettier-ignore-start -->
30+
<!-- markdownlint-disable -->
31+
<table>
32+
<tr>
33+
<td align="center"><a href="https://github.com/JNSAPH"><img src="https://avatars.githubusercontent.com/u/35976079?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jonas</b></sub></a><br /><a href="#design-JNSAPH" title="Design">🎨</a> <a href="#ideas-JNSAPH" title="Ideas, Planning, & Feedback">🤔</a></td>
34+
<td align="center"><a href="https://github.com/NudelErde"><img src="https://avatars.githubusercontent.com/u/37987062?v=4?s=100" width="100px;" alt=""/><br /><sub><b>NudelErde</b></sub></a><br /><a href="https://github.com/ApolloFiles/Apollo/commits?author=NudelErde" title="Code">💻</a> <a href="#userTesting-NudelErde" title="User Testing">📓</a> <a href="#ideas-NudelErde" title="Ideas, Planning, & Feedback">🤔</a></td>
35+
</tr>
36+
</table>
37+
38+
<!-- markdownlint-restore -->
39+
<!-- prettier-ignore-end -->
40+
41+
<!-- ALL-CONTRIBUTORS-LIST:END -->

package.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@
3535
"snyk:docker": "npm run docker:build && snyk container test apollo:dev --file=Dockerfile",
3636

3737
"docker:build": "npm run build && docker build --rm --tag apollo:dev .",
38-
"docker:dev": "npm run docker:build && (docker stop apollo;docker rm apollo;echo '') && docker run --name apollo --cpus 2 --memory 1G --volume apollo-dev:/app/storage/ apollo:dev"
38+
"docker:dev": "npm run docker:build && (docker stop apollo;docker rm apollo;echo '') && docker run --name apollo --cpus 2 --memory 1G --volume apollo-dev:/app/storage/ apollo:dev",
39+
40+
"contributors:add": "all-contributors add",
41+
"contributors:generate": "all-contributors generate"
3942
},
4043
"engines": {
4144
"node": ">=16.0.0",
@@ -78,6 +81,7 @@
7881
"@types/passport-oauth2": "^1.4.11",
7982
"@types/session-file-store": "^1.2.2",
8083
"@types/sharp": "^0.30.2",
84+
"all-contributors-cli": "^6.20.0",
8185
"jest": "^28.1.0",
8286
"nodemon": "^2.0.16",
8387
"snyk": "^1.946.0",

0 commit comments

Comments
 (0)