The official website for AkondAstro - a branch of AkondLab focused on creating software for astronomy.
Authors: Mikołaj Kałuszyński & Claude (Anthropic)
AkondAstro is a specialized division of AkondLab dedicated to creating innovative software solutions for astronomical research and observation. This website showcases our projects and partnerships in the astronomical software community.
- Framework: Astro
- Styling: Tailwind CSS
- Content: Markdown-based CMS
- Deployment: Cloudflare Pages
- Package Manager: npm
URL: https://akond.space
Repository: https://github.com/AkondLab/web-akondastro
- Node.js 18+
- npm
# Clone repository
git clone https://github.com/AkondLab/web-akondastro.git
cd web-akondastro
# Install dependencies
npm install
# Start development server
npm run dev| Command | Action |
|---|---|
npm run dev |
Start development server at localhost:4321 |
npm run build |
Build production site to ./dist/ |
npm run preview |
Preview production build locally |
npm run astro check |
Run type checking |
├── src/
│ ├── content/ # Markdown content files
│ │ ├── projects/ # Project descriptions (homepage cards)
│ │ ├── partners/ # Partner information (homepage)
│ │ └── pages/ # Full content pages (e.g., TACOSS)
│ ├── pages/ # Route pages
│ │ ├── index.astro # Homepage
│ │ └── [...slug].astro # Dynamic routing for content pages
│ ├── styles/ # Global styles
│ └── content.config.ts # Content collections schema
├── public/
│ └── assets/
│ ├── logos/ # Logo assets
│ │ ├── brand/ # AkondAstro branding
│ │ ├── projects/ # Project logos
│ │ └── partners/ # Partner logos
│ └── images/ # Content images
│ └── tacoss/ # TACOSS page images
├── .github/
│ └── workflows/ # GitHub Actions
└── astro.config.mjs # Astro configuration
Content is managed through Markdown files with frontmatter:
Edit files in src/content/projects/:
---
title: "Project Name"
logo: "/assets/logos/projects/logo.svg"
url: "/project-slug" # Internal link for detail pages
# OR
url: "https://external-site.com" # External link
order: 1
---
Short project description in Markdown (shown on homepage).Internal vs External Links:
- URLs starting with
/create internal links to detail pages (e.g.,/tacoss) - Full URLs create external links to other websites
Create comprehensive pages in src/content/pages/:
---
title: "Project Name"
description: "SEO description"
logo: "/assets/logos/projects/logo.svg"
externalUrl: "https://github.com/org/repo" # optional
---
Full project description with images:

## Section Title
Content...Edit files in src/content/partners/:
---
title: "Organization Name"
subtitle: "Location/Affiliation"
logo: "/assets/logos/partners/logo.svg"
url: "https://organization-url.com"
filter: "invert" # optional CSS filter
order: 1
---Place images in public/assets/images/:
public/assets/images/
└── tacoss/ # Project-specific folder
├── banner.png # Hero images
├── screenshot.png # UI screenshots
└── diagram.svg # Architecture diagramsReference in Markdown:
- Primary Logo:
akondastro_logo_bright.svg(for dark backgrounds) - Alternative:
akondastro_logo_dark.svg(for light backgrounds) - Brand Color:
#60a5fa(blue-400) - Text Color:
#f8fafc(slate-50)
The site is deployed on Cloudflare Pages and automatically builds/deploys when pushing to the main branch.
- Live URL: https://akond.space
- Deployment: Cloudflare Pages
- Build Command:
npm run build - Output Directory:
dist
npm run build
# Upload dist/ folder to your hosting provider- TACOSS - Telescope Automation, Control, and Operation Software Suite
- Open-source observatory control platform
- Currently operational at OCM Observatory, Chile
- GitHub Organization
- BHTom Platform - Black Hole Transient Monitor
- OCM Observatory - Chile-based astronomical facility
- AkondLab - Parent company
We collaborate with leading astronomical institutions:
- CAMK PAN - Nicolaus Copernicus Astronomical Center, Polish Academy of Sciences
- Araucaria Group - Active astronomical research team
- OCM Observatory - Chile-based testing and deployment facility
- Astronomical Observatory, University of Warsaw
- National Centre for Nuclear Research (NCBJ)
- ASA Astrosysteme GmbH - Austria
This project is proprietary software of AkondLab.