A modern technical research, data insights, and engineering documentation hub created by Aditya.
- YouTube: @ADVANCED_ANALYSIS
- Instagram: @advanced_analysis
-
Activate the Virtual Environment:
source .venv/bin/activate -
Start the Live Development Server:
mkdocs serve
Open your browser at
http://127.0.0.1:8000/. The site will automatically hot-reload whenever you edit any file. -
Build the Static HTML:
mkdocs build
site/
├── .github/
│ └── workflows/
│ └── deploy.yml # Automated 100% free deployment to GitHub Pages
├── docs/ # All your content lives here
│ ├── index.md # Homepage
│ ├── analysis/ # Research & analysis articles
│ ├── guides/ # How-to guides and architecture
│ ├── about/ # About page and Aditya's profile
│ ├── stylesheets/
│ │ └── extra.css # Modern custom CSS styling
│ └── javascripts/
│ └── extra.js # Custom scripts
├── overrides/
│ └── main.html # Custom HTML template for injecting <head> / <body>
├── mkdocs.yml # Site navigation, theme colors, social links config
└── requirements.txt # Python dependencies
- Push this repository to GitHub:
git init git add . git commit -m "feat: initial ADVANCED ANALYSIS site" git remote add origin https://github.com/<YOUR_USERNAME>/<REPO_NAME>.git git push -u origin main
- In your GitHub repository:
- Go to Settings > Pages
- Under Build and deployment > Source, choose GitHub Actions
- Your site will automatically build and publish to
https://<YOUR_USERNAME>.github.io/<REPO_NAME>/for free with SSL enabled.