-
Notifications
You must be signed in to change notification settings - Fork 0
fix: RockSolid audit — all 13 findings resolved #8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,109 +1,77 @@ | ||
| # CalmKernelTR.github.io - Repository Map | ||
|
|
||
| ## Project Overview | ||
|
|
||
| **calmkerneltr.github.io** is the CalmKernel portfolio website hosted on GitHub Pages. It showcases open-source Linux system management tools and projects. | ||
|
|
||
| - **Domain**: calmkernel.tr | ||
| - **Visibility**: Public | ||
| - **Type**: Static Website (GitHub Pages) | ||
| - **Language**: HTML, CSS, JavaScript | ||
| - **Primary Language**: Turkish | ||
| - **Secondary Language**: English (/en/) | ||
|
|
||
| ## Directory Structure | ||
|
|
||
| ``` | ||
| calmkerneltr.github.io/ | ||
| ├── index.html # Main landing page (TR) | ||
| ├── tools.html # Projects/tools showcase (TR) | ||
| ├── premium.html # Premium services (TR) | ||
| ├── privacy-policy.html # KVKK/Privacy policy (TR) | ||
| ├── 404.html # Custom error page (TR) | ||
| ├── CNAME # Custom domain: calmkernel.tr | ||
| ├── robots.txt # Search engine directives | ||
| ├── sitemap.xml # XML sitemap | ||
| ├── .nojekyll # Disable Jekyll processing | ||
| ├── LICENSE # Proprietary license | ||
| ├── SECURITY.md # Security policy | ||
| ├── .REPOMAP.md # This file | ||
| ├── blog/ | ||
| │ ├── bigfive-v6.1.0.html # BigFive v6.1.0 release post (TR) | ||
| │ └── edition-methodology.html # Edition naming guide (TR) | ||
| ├── en/ # English version (i18n) | ||
| │ ├── index.html | ||
| │ ├── tools.html | ||
| │ ├── premium.html | ||
| │ ├── privacy-policy.html | ||
| │ ├── 404.html | ||
| │ └── blog/ | ||
| │ ├── bigfive-v6.1.0.html | ||
| │ └── edition-methodology.html | ||
| └── assets/ | ||
| ├── css/ # Stylesheets (Aiero theme + custom) | ||
| ├── js/ # Scripts (vendor + custom) | ||
| ├── images/ # Images, logos, og:image | ||
| └── fonts/ # Self-hosted Sora + Manrope (WOFF2) | ||
| ``` | ||
|
|
||
| ## Pages | ||
|
|
||
| | URL | File | Language | Description | | ||
| |-----|------|----------|-------------| | ||
| | `/` | `index.html` | TR | Landing page with projects | | ||
| | `/tools.html` | `tools.html` | TR | Projects/tools showcase | | ||
| | `/premium.html` | `premium.html` | TR | Premium services | | ||
| | `/privacy-policy.html` | `privacy-policy.html` | TR | KVKK/Privacy policy | | ||
| | `/404.html` | `404.html` | TR | Not found error | | ||
| | `/blog/bigfive-v6.1.0.html` | `blog/bigfive-v6.1.0.html` | TR | BigFive v6.1.0 release post | | ||
| | `/blog/edition-methodology.html` | `blog/edition-methodology.html` | TR | Edition naming guide | | ||
| | `/en/` | `en/index.html` | EN | Landing page with projects | | ||
| | `/en/tools.html` | `en/tools.html` | EN | Projects/tools showcase | | ||
| | `/en/premium.html` | `en/premium.html` | EN | Premium services | | ||
| | `/en/privacy-policy.html` | `en/privacy-policy.html` | EN | Privacy policy | | ||
| | `/en/404.html` | `en/404.html` | EN | Not found error | | ||
| | `/en/blog/bigfive-v6.1.0.html` | `en/blog/bigfive-v6.1.0.html` | EN | BigFive v6.1.0 release post | | ||
| | `/en/blog/edition-methodology.html` | `en/blog/edition-methodology.html` | EN | Edition naming guide | | ||
|
|
||
| ## Hosting Configuration | ||
|
|
||
| | Setting | Value | | ||
| |---------|-------| | ||
| | Platform | GitHub Pages | | ||
| | Repository | CalmKernelTR/calmkerneltr.github.io | | ||
| | Custom Domain | calmkernel.tr | | ||
| | HTTPS | Enabled | | ||
| | Branch | main | | ||
|
|
||
| ## Featured Projects | ||
|
|
||
| | Project | Description | | ||
| |---------|-------------| | ||
| | BigFive Updater | Linux multi-distro update tool | | ||
| | Claude Code Skills | AI assistant skill collection | | ||
| | DataWash | Data cleaning CLI | | ||
|
|
||
| ## Design | ||
|
|
||
| - **Theme**: Aiero IT Services (index13) — Dark mode | ||
| - **Colors**: Primary: #45d0bd (turquoise), Secondary: #ef6464 (red) | ||
| - **Typography**: Sora + Manrope (self-hosted WOFF2, GDPR/KVKK compliant) | ||
| - **Framework**: Bootstrap 5 + Swiper + GSAP + ScrollTrigger + Lenis | ||
|
|
||
| ## Development | ||
|
|
||
| ```bash | ||
| # Local preview (use any static server) | ||
| python -m http.server 8000 | ||
| # or | ||
| npx serve . | ||
|
|
||
| # Deploy (automatic via GitHub Pages on push to main) | ||
| git add -A && git commit -m "Update site" && git push | ||
| ``` | ||
|
|
||
| ## DNS Configuration | ||
|
|
||
| Domain `calmkernel.tr` is configured to point to GitHub Pages: | ||
| - CNAME record points to `calmkerneltr.github.io` | ||
| - HTTPS certificate managed by GitHub | ||
| # CalmKernelTR.github.io — Repository Map | ||
|
|
||
| ## Project Overview | ||
|
|
||
| **calmkerneltr.github.io** is the CalmKernel corporate website hosted on GitHub Pages. | ||
|
|
||
| - **Domain**: calmkernel.tr | ||
| - **Visibility**: Public | ||
| - **Type**: Static Website (GitHub Pages) | ||
| - **Stack**: HTML, Tailwind CSS v4, Font Awesome 6, vanilla JS | ||
| - **Primary Language**: Turkish | ||
| - **Secondary Language**: English (/en/) | ||
|
|
||
| ## Directory Structure | ||
|
|
||
| ``` | ||
| calmkerneltr.github.io/ | ||
| ├── index.html # Main landing page (TR) | ||
| ├── privacy-policy.html # KVKK privacy policy (TR) | ||
| ├── 404.html # Custom error page (TR/EN) | ||
| ├── CNAME # Custom domain: calmkernel.tr | ||
| ├── .nojekyll # Disable Jekyll processing | ||
| ├── favicon.svg # Site favicon | ||
| ├── og-image.png # Open Graph image | ||
| ├── LICENSE # Proprietary license | ||
| ├── SECURITY.md # Security policy | ||
| ├── README.md # Project documentation | ||
| ├── en/ | ||
| │ ├── index.html # Landing page (EN) | ||
| │ └── privacy-policy.html # Privacy policy (EN) | ||
| ├── assets/ | ||
| │ ├── css/ | ||
| │ │ ├── main.css # Tailwind purged build | ||
| │ │ ├── font-awesome.min.css # Font Awesome 6 | ||
| │ │ └── cookie-consent.css # Cookie banner styles | ||
| │ ├── js/ | ||
| │ │ └── cookie-consent.js # Cookie consent (KVKK) | ||
| │ ├── fonts/ # Self-hosted Sora + Inter (WOFF2) | ||
| │ ├── webfonts/ # Font Awesome webfonts | ||
| │ └── images/ | ||
| │ └── calmkernel-icon.svg # Brand icon | ||
| ├── src/ | ||
| │ └── input.css # Tailwind source CSS | ||
| └── .github/ | ||
| └── workflows/ | ||
| ├── deploy.yml # GitHub Pages deploy | ||
| └── ci.yml # HTML validation + Lighthouse | ||
| ``` | ||
|
|
||
| ## Pages | ||
|
|
||
| | URL | File | Language | Description | | ||
| |-----|------|----------|-------------| | ||
| | `/` | `index.html` | TR | Landing page | | ||
| | `/en/` | `en/index.html` | EN | Landing page | | ||
| | `/privacy-policy.html` | `privacy-policy.html` | TR | Gizlilik Politikası | | ||
| | `/en/privacy-policy.html` | `en/privacy-policy.html` | EN | Privacy Policy | | ||
| | `/404.html` | `404.html` | TR/EN | Error page | | ||
|
|
||
| ## Design | ||
|
|
||
| - **Theme**: Dark Amber — custom design (Stitch AI generated, refined) | ||
| - **Colors**: Primary: #f59e0b (amber), Background: #09090b (zinc-950) | ||
| - **Typography**: Sora (headlines) + Inter (body), self-hosted WOFF2 | ||
| - **CSS Framework**: Tailwind CSS v4, purged build (~32KB) | ||
| - **Icons**: Font Awesome 6, self-hosted webfonts | ||
|
|
||
| ## Hosting | ||
|
|
||
| | Setting | Value | | ||
| |---------|-------| | ||
| | Platform | GitHub Pages | | ||
| | Repository | CalmKernelTR/calmkerneltr.github.io | | ||
| | Custom Domain | calmkernel.tr | | ||
| | HTTPS | Enabled (GitHub managed) | | ||
| | Branch | main | | ||
| | Deploy | Automatic via actions/deploy-pages | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| # Auto-detect text files and normalize line endings | ||
| * text=auto | ||
|
|
||
| # Force LF for web files | ||
| *.html text eol=lf | ||
| *.css text eol=lf | ||
| *.js text eol=lf | ||
| *.json text eol=lf | ||
| *.yml text eol=lf | ||
| *.yaml text eol=lf | ||
| *.md text eol=lf | ||
| *.svg text eol=lf | ||
|
|
||
| # Binary files - no diff, no merge | ||
| *.woff binary | ||
| *.woff2 binary | ||
| *.png binary | ||
| *.jpg binary | ||
| *.ico binary | ||
|
|
||
| # Generated files - no diff in PRs | ||
| assets/css/main.css linguist-generated=true | ||
| assets/css/font-awesome.min.css linguist-generated=true | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.