-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcommit_script.sh
More file actions
executable file
·83 lines (56 loc) · 2.2 KB
/
commit_script.sh
File metadata and controls
executable file
·83 lines (56 loc) · 2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/bin/zsh
# This script adds and commits each file individually with a specific message.
# Root directory files
git add .gitignore
git commit -m "chore: Add gitignore file"
git add analyze_webpage.py
git commit -m "feat: Add script for analyzing webpages"
git add cf-api.txt
git commit -m "docs: Add codeforces API information"
git add methords.txt
git commit -m "docs: Add methods documentation"
git add next-env.d.ts
git commit -m "build: Add Next.js environment type definitions"
git add next.config.js
git commit -m "feat: Configure Next.js application"
git add package.json
git commit -m "feat: Initialize project and add dependencies"
git add prompt.txt
git commit -m "feat: Add prompt for NLP model"
git add README.md
git commit -m "docs: Add initial project README"
git add return-objects.txt
git commit -m "docs: Document return objects"
git add tsconfig.json
git commit -m "build: Add TypeScript configuration"
# App directory
git add app/globals.css
git commit -m "style: Add global styles for the application"
git add app/layout.tsx
git commit -m "feat: Add root layout for the Next.js application"
git add app/page.tsx
git commit -m "feat: Add main page for the application"
git add app/analytics/analytics.css
git commit -m "style: Add styles for the analytics page"
git add app/analytics/page.tsx
git commit -m "feat: Add analytics page component"
git add app/api/cf/route.ts
git commit -m "feat: Add API route for codeforces services"
git add app/api/insights/route.ts
git commit -m "feat: Add API route for providing insights"
git add app/components/Welcome.css
git commit -m "style: Add styles for the Welcome component"
git add app/components/Welcome.tsx
git commit -m "feat: Add Welcome component"
# client-development directory
git add client-development/0.pack.gz
git commit -m "chore: Add client development pack file"
git add client-development/index.pack.gz
git commit -m "chore: Add client development index pack file"
# lib directory
git add lib/analytics/aggregate.ts
git commit -m "feat: Add analytics data aggregation logic"
git add lib/cf/client.ts
git commit -m "feat: Add codeforces client implementation"
git add lib/cf/sign.ts
git commit -m "feat: Add request signing logic for codeforces API"