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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A web-based YAML editor for Lando configuration files with real-time validation
## Features

- **🎨 YAML Syntax Highlighting**: Custom syntax highlighting optimized for Landofiles
- **✅ Real-time Validation**: Validates against the community-driven [Lando schema specification](https://github.com/4lando/lando-spec)
- **✅ Real-time Validation**: Validates against the community-driven [Lando schema specification](https://github.com/lando-community/lando-spec)
- **🔄 Auto-formatting**: Automatically formats:
- On file load
- When pasting content
Expand All @@ -29,7 +29,7 @@ A web-based YAML editor for Lando configuration files with real-time validation
- Save with auto-naming
- Preserves comments and structure

All schema-powered features (validation, suggestions, hover tooltips, etc) are driven by the community-driven [Lando schema specification](https://github.com/4lando/lando-spec), ensuring accuracy and consistency with Lando's configuration format.
All schema-powered features (validation, suggestions, hover tooltips, etc) are driven by the community-driven [Lando schema specification](https://github.com/lando-community/lando-spec), ensuring accuracy and consistency with Lando's configuration format.

## Usage

Expand Down Expand Up @@ -85,7 +85,7 @@ The editor will be available at `https://editor.lndo.site/public`.
### Deployment

The editor is automatically deployed to GitHub Pages when code is pushed to the main branch.
You can access the live version at: https://4lando.github.io/editor/
You can access the live version at: https://lando-community.github.io/editor/

## Tech Stack

Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ <h1 class="text-3xl font-bold text-gray-900 dark:text-white">Landofile Editor</h
</div>
</div>
<div class="flex items-center gap-4">
<a href="https://github.com/4lando/editor" target="_blank" rel="noopener noreferrer"
<a href="https://github.com/lando-community/editor" target="_blank" rel="noopener noreferrer"
class="p-2 rounded-lg bg-gray-200 dark:bg-gray-700 hover:bg-gray-300 dark:hover:bg-gray-600 transition-colors"
aria-label="View source on GitHub">
<!-- GitHub icon -->
Expand Down Expand Up @@ -124,7 +124,7 @@ <h1 class="text-3xl font-bold text-gray-900 dark:text-white">Landofile Editor</h

<footer class="mt-8 text-center text-sm text-gray-600 dark:text-gray-400">
<p>
Validation powered by the <a href="https://github.com/4lando/lando-spec" target="_blank"
Validation powered by the <a href="https://github.com/lando-community/lando-spec" target="_blank"
rel="noopener noreferrer" class="text-[#df4090] hover:underline">Lando Schema Specification</a>
</p>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion src/content/usage-instructions.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const usageInstructions = (
<p className="mb-4 text-gray-600 dark:text-gray-300">
The editor validates your Landofile configuration against the{" "}
<a
href="https://github.com/4lando/lando-spec"
href="https://github.com/lando-community/lando-spec"
target="_blank"
rel="noopener noreferrer"
className="text-[#df4090] hover:underline"
Expand Down
2 changes: 1 addition & 1 deletion src/lib/schema-validation.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export async function loadSchema() {
}

if (!schema) {
const schemaUrl = "https://4lando.github.io/lando-spec/landofile-spec.json";
const schemaUrl = "https://lando-community.github.io/lando-spec/landofile-spec.json";
debug.log("Fetching schema from:", schemaUrl);

const response = await fetch(schemaUrl);
Expand Down
Loading