Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,22 @@

Built on ArchiMate · Powered by Go · PostgreSQL · Open Source

[![Try the live demo](https://img.shields.io/badge/▶%20Try%20the%20live%20demo-E85D3A?style=for-the-badge&logoColor=white)](https://demo.archipulse.org/#/login?try=demo)

[![Build](https://img.shields.io/github/actions/workflow/status/DisruptiveWorks/archipulse/ci.yml?branch=main&style=flat-square)](https://github.com/DisruptiveWorks/archipulse/actions)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](./LICENSE)
[![Go Version](https://img.shields.io/badge/go-1.24%2B-00ADD8?style=flat-square&logo=go)](https://go.dev)
[![PostgreSQL](https://img.shields.io/badge/PostgreSQL-17%2B-336791?style=flat-square&logo=postgresql)](https://www.postgresql.org)
[![ArchiMate](https://img.shields.io/badge/ArchiMate-3.2-orange?style=flat-square)](https://www.opengroup.org/archimate-forum)
[![Contributions Welcome](https://img.shields.io/badge/contributions-welcome-brightgreen?style=flat-square)](./CONTRIBUTING.md)

[Live Demo](https://demo.archipulse.org) · [Getting Started](#getting-started) · [Features](#features) · [How It Works](#how-it-works) · [Roadmap](#roadmap) · [Contributing](#contributing) · [Support](#support)
[Live Demo](https://demo.archipulse.org/#/login?try=demo) · [Getting Started](#getting-started) · [Features](#features) · [How It Works](#how-it-works) · [Roadmap](#roadmap) · [Contributing](#contributing) · [Support](#support)

</div>

---

> **Try it:** [demo.archipulse.org](https://demo.archipulse.org) — pre-loaded with the ArchiSurance example model. No sign-up required.
> **Try it:** [demo.archipulse.org](https://demo.archipulse.org/#/login?try=demo) — pre-loaded with ArchiSurance and ArchiMetal example models. One click, no sign-up required.

---

Expand Down Expand Up @@ -129,7 +131,7 @@ flowchart TD
<!-- Replace VIDEO_ID with the YouTube video ID once the demo is published -->
<!-- [![ArchiPulse Demo](https://img.youtube.com/vi/VIDEO_ID/maxresdefault.jpg)](https://www.youtube.com/watch?v=VIDEO_ID) -->

> Demo video coming soon. In the meantime, try the [live demo](https://demo.archipulse.org) — no sign-up required.
> Demo video coming soon. In the meantime, try the [live demo](https://demo.archipulse.org/#/login?try=demo) — one click, no sign-up required.

---

Expand Down
7 changes: 7 additions & 0 deletions cmd/archipulse/ui/src/routes/Login.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@
demoMode = cfg.demo_mode ?? false;
demoEmail = cfg.demo_email ?? '';
demoPassword = cfg.demo_password ?? '';

const hashParams = new URLSearchParams(window.location.hash.split('?')[1] || '');
const searchParams = new URLSearchParams(window.location.search);
const tryParam = hashParams.get('try') || searchParams.get('try');
if (demoMode && tryParam === 'demo') {
await loginAsDemo();
}
});

async function handleSubmit(e) {
Expand Down
6 changes: 3 additions & 3 deletions website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@
</span>
</a>
<ul class="nav-links">
<li><a href="https://demo.archipulse.org" target="_blank">Live Demo</a></li>
<li><a href="https://demo.archipulse.org/#/login?try=demo" target="_blank">Live Demo</a></li>
<li><a href="#screenshots">Screenshots</a></li>
<li><a href="#how-it-works">How it works</a></li>
<li><a href="#features">Features</a></li>
Expand Down Expand Up @@ -596,7 +596,7 @@ <h1 class="fade-up delay-1">
</p>

<div class="hero-actions fade-up delay-3">
<a href="https://demo.archipulse.org" class="btn-primary" target="_blank">
<a href="https://demo.archipulse.org/#/login?try=demo" class="btn-primary" target="_blank">
Live Demo →
</a>
<a href="https://github.com/DisruptiveWorks/archipulse" class="btn-secondary" target="_blank">
Expand All @@ -621,7 +621,7 @@ <h1 class="fade-up delay-1">
<strong>Try ArchiPulse live</strong>
<span>Explore fully loaded ArchiSurance and ArchiMetal models — application dashboard, capability landscape, dependency graph, and AOEF export. No sign-up, no install.</span>
</div>
<a href="https://demo.archipulse.org" class="btn-primary" target="_blank">
<a href="https://demo.archipulse.org/#/login?try=demo" class="btn-primary" target="_blank">
Open Live Demo →
</a>
</div>
Expand Down
Loading