最后活跃于 3 weeks ago

nuno 修订了这个 Gist 3 weeks ago. 转到此修订

1 file changed, 51 insertions

.gitignore(文件已创建)

@@ -0,0 +1,51 @@
1 + # Dependencies
2 + node_modules/
3 +
4 + docker-compose.yml
5 + package-lock.json
6 +
7 + # Environment variables — never commit these
8 + .env
9 +
10 + # Runtime data — server-specific, never commit
11 + data/config.json
12 + data/characters.json
13 + data/accounts.json
14 + data/poll-state.json
15 + data/usermap.json
16 + data/wrank.json
17 + data/bringer.json
18 + data/attendance.json
19 + data/sessionPreferences.json
20 + data/tg-history/
21 +
22 + # Emoji data
23 + emoji-uploads/
24 +
25 + # Tests
26 + tests/
27 +
28 + # Keep the data directory structure but not the contents
29 + !data/.gitkeep
30 + !data/tg-history/.gitkeep
31 +
32 + # Messages — user-specific files stay local
33 + messages/users/
34 +
35 + # Keep the users directory structure
36 + !messages/users/.gitkeep
37 +
38 + # TypeScript build output
39 + dist/
40 +
41 + # Logs
42 + *.log
43 + npm-debug.log*
44 +
45 + # OS files
46 + .DS_Store
47 + Thumbs.db
48 +
49 + # Editor
50 + .vscode/
51 + .idea/
上一页 下一页