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
20 changes: 10 additions & 10 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { defineConfigWithTheme } from "vitepress"; // https://vitepress.dev/reference/site-config
import { useSidebar } from "vitepress-openapi";
import { getSidebar } from "vitepress-plugin-auto-sidebar";
import {defineConfigWithTheme} from "vitepress"; // https://vitepress.dev/reference/site-config
import {useSidebar} from "vitepress-openapi";
import {getSidebar} from "vitepress-plugin-auto-sidebar";
import semver from "semver";
import env from "../src/env.json" with { type: "json" };
import spec from "../src/assets/facturxdotnet.openapi.json" with { type: "json" };
import env from "../src/env.json" with {type: "json"};
import spec from "../src/assets/facturxdotnet.openapi.json" with {type: "json"};

const specSidebar = useSidebar({
spec,
Expand Down Expand Up @@ -84,7 +84,7 @@ export default defineConfigWithTheme({

nav: [
{ text: "Home", link: "/" },
{ text: "Guides", link: "/guides/getting-started" },
{ text: "Guides", link: "/guides/what-is-facturxdotnet" },
{
text: "Try it live!",
items: [
Expand Down Expand Up @@ -121,10 +121,6 @@ export default defineConfigWithTheme({
text: "What is FacturX.NET?",
link: "/guides/what-is-facturxdotnet",
},
{
text: "Getting started",
link: "/guides/getting-started",
},
{
text: "Use cases",
items: [
Expand Down Expand Up @@ -164,6 +160,10 @@ export default defineConfigWithTheme({
{ text: "Extract XMP metadata", link: "/extraction/cii" },
],
},
{
text: "Self-hosting",
link: "/guides/self-hosting",
},
],
},
{
Expand Down
6 changes: 0 additions & 6 deletions docs/src/guides/getting-started.md

This file was deleted.

6 changes: 6 additions & 0 deletions docs/src/guides/self-hosting.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: Self-hosting
editLink: true
---

TODO
24 changes: 23 additions & 1 deletion docs/src/guides/what-is-facturxdotnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,26 @@ It comes in multiple flavors:
- a web app: [app](https://editor.facturxdotnet.org) | [source](https://github.com/FacturX-NET/FacturXDotNet/tree/master/FacturXDotNet.WebEditor)
- a .NET library: [nuget](https://www.nuget.org/packages/FacturXDotNet) | [source](https://github.com/FacturX-NET/FacturXDotNet/tree/master/FacturXDotNet)

All these tools provide the same set of [features](#features).
## Features

All these tools provide the same set of features.

### Generation
#### [Generate a Factur-X document](/guides/generation/facturx)
#### [Generate a standard PDF](/guides/generation/standard-pdf)

### Validation
#### [Validate a Factur-X document](/guides/validation/facturx)
#### [Validate Cross-Industry Invoice data](/guides/validation/cii)

### Extraction
#### [Extract Cross-Industry Invoice data](/guides/extraction/cii)
#### [Extract XMP metadata](/guides/extraction/xmp)

## Self-hosting

The demo versions of the editor and API are intended for demonstration purposes only. They run on low-cost, limited, and insecure public cloud infrastructure.

If you plan to use these tools in a production environment, we strongly recommend self-hosting them for better performance, security, and control.

[Learn more aboute self-hosting >](/guides/self-hosting)
4 changes: 2 additions & 2 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ hero:
text: What is FacturX.NET?
link: /guides/what-is-facturxdotnet
- theme: alt
text: Getting started
link: /guides/getting-started
text: Self-hosting
link: /guides/self-hosting
- theme: alt
text: GitHub
link: https://github.com/FacturX-NET/FacturXDotNet
Expand Down
Loading