This guide walks you through everything you need to get the Aurora Borealis portfolio running on your machine — from obtaining the source files to understanding the project structure, navigating all seven routes, and deploying the ready-made static bundle to any host.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/apursley2012/aurora-borealis/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
Aurora Borealis ships as a pre-built static bundle — there is no build step and nopackage.json. All JavaScript, CSS, and HTML files are already compiled and ready to serve. The only things you need are:
- Git — to clone the repository
- A way to serve static files locally — a browser (for direct file opening) or a simple static file server
Running Locally
Serve the files
Because the project is a pre-built static bundle, you do not need to install dependencies or run a build command. Simply start a local static file server from the project root:With
npx serve, the portfolio will be available at http://localhost:3000 (or the port shown in your terminal). With Python’s server it will be at http://localhost:8080.Alternatively, you can open index.html directly in your browser — most modern browsers handle ES module preloads correctly when loading from the local file system, though a static server is recommended to avoid any CORS restrictions on module imports.Open the portfolio in your browser
Navigate to the URL shown by your server (e.g.
http://localhost:3000). You should see the aurora gradient background and star field canvas load immediately, followed by the constellation navigation bar across the top. Use the navigation links to move between the seven portfolio pages.Because the project uses hash-based routing, every URL includes a
# fragment (for example http://localhost:3000/#/about). Direct navigation to http://localhost:3000/about will redirect automatically to the hash equivalent via the inline script in each HTML entry point.Project Structure
Each file under
pages/ is a complete HTML document with its own <script> block that sets window.__STATIC_PAGE_ROUTE__ to the page’s canonical hash route. This tells the React app which route to render when the page is loaded directly — for example, loading pages/About.html sets window.__STATIC_PAGE_ROUTE__ = "/about" and redirects the browser to #/about before React mounts.Available Routes
The portfolio exposes seven hash routes, each mapped to a thematic page title drawn from the night-sky design language:| Route | Page Title | Description |
|---|---|---|
/ | Home | Hero page with developer introduction and stats |
/about | About — Observatory | Career journey and the Observatory panel |
/projects | Projects — Mission Catalog | Interactive project cards on a star map layout |
/skills | Skills — Star Chart | Constellation skill chart with proficiency bars |
/writing | Writing — Flight Log | Blog post archive and article index |
/case-studies | Case Studies — Transmission Archive | Deep-dive project breakdowns |
/contact | Contact — Signal Transmitter | Animated contact form with social links |
Deploying the Portfolio
The project is already a fully compiled static bundle — no build step is required before deployment. To publish the portfolio, copy the entire project directory (all HTML, JS, and CSS files) to any static hosting provider:- GitHub Pages — push the repository and enable Pages from the root or
docs/branch - Netlify / Vercel — drag-and-drop the project folder or connect the repository; set the publish directory to the project root
- Cloudflare Pages — connect the repository and leave the build command empty
- S3 / any CDN — upload all files, preserving the directory structure
Because each page under
pages/ is a self-contained HTML entry, you can deploy individual pages to separate paths on your static host and direct navigation will work correctly without any redirect rules, thanks to the window.__STATIC_PAGE_ROUTE__ mechanism.