Skip to content

Commit

Permalink
Merge pull request #3 from credebl/local-setup-feature
Browse files Browse the repository at this point in the history
 Added installation steps for local setup
  • Loading branch information
ajile-in committed Aug 29, 2023
2 parents b6fa50d + e686416 commit 9c06061
Show file tree
Hide file tree
Showing 16 changed files with 12,817 additions and 17,544 deletions.
70 changes: 65 additions & 5 deletions .astro/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,9 @@ declare module 'astro:content' {

type BaseSchemaWithoutEffects =
| import('astro/zod').AnyZodObject
| import('astro/zod').ZodUnion<import('astro/zod').AnyZodObject[]>
| import('astro/zod').ZodUnion<[BaseSchemaWithoutEffects, ...BaseSchemaWithoutEffects[]]>
| import('astro/zod').ZodDiscriminatedUnion<string, import('astro/zod').AnyZodObject[]>
| import('astro/zod').ZodIntersection<
import('astro/zod').AnyZodObject,
import('astro/zod').AnyZodObject
>;
| import('astro/zod').ZodIntersection<BaseSchemaWithoutEffects, BaseSchemaWithoutEffects>;

type BaseSchema =
| BaseSchemaWithoutEffects
Expand Down Expand Up @@ -215,13 +212,62 @@ declare module 'astro:content' {
collection: "docs";
data: InferEntrySchema<"docs">
} & { render(): Render[".md"] };
"en/guides/local-setup-using-docker.md": {
id: "en/guides/local-setup-using-docker.md";
slug: "en/guides/local-setup-using-docker";
body: string;
collection: "docs";
data: InferEntrySchema<"docs">
} & { render(): Render[".md"] };
"en/guides/local-setup-using-npm.md": {
id: "en/guides/local-setup-using-npm.md";
slug: "en/guides/local-setup-using-npm";
body: string;
collection: "docs";
data: InferEntrySchema<"docs">
} & { render(): Render[".md"] };
"en/guides/nats.md": {
id: "en/guides/nats.md";
slug: "en/guides/nats";
body: string;
collection: "docs";
data: InferEntrySchema<"docs">
} & { render(): Render[".md"] };
"en/guides/self-hosting.md": {
id: "en/guides/self-hosting.md";
slug: "en/guides/self-hosting";
body: string;
collection: "docs";
data: InferEntrySchema<"docs">
} & { render(): Render[".md"] };
"en/guides/using-credebl-id.md": {
id: "en/guides/using-credebl-id.md";
slug: "en/guides/using-credebl-id";
body: string;
collection: "docs";
data: InferEntrySchema<"docs">
} & { render(): Render[".md"] };
"en/intro/intro-to-ssi.md": {
id: "en/intro/intro-to-ssi.md";
slug: "en/intro/intro-to-ssi";
body: string;
collection: "docs";
data: InferEntrySchema<"docs">
} & { render(): Render[".md"] };
"en/intro/key-concepts.md": {
id: "en/intro/key-concepts.md";
slug: "en/intro/key-concepts";
body: string;
collection: "docs";
data: InferEntrySchema<"docs">
} & { render(): Render[".md"] };
"en/intro/platform-features.md": {
id: "en/intro/platform-features.md";
slug: "en/intro/platform-features";
body: string;
collection: "docs";
data: InferEntrySchema<"docs">
} & { render(): Render[".md"] };
"en/intro/what-is-credebl.md": {
id: "en/intro/what-is-credebl.md";
slug: "en/intro/what-is-credebl";
Expand All @@ -243,6 +289,20 @@ declare module 'astro:content' {
collection: "docs";
data: InferEntrySchema<"docs">
} & { render(): Render[".md"] };
"en/support/community.md": {
id: "en/support/community.md";
slug: "en/support/community";
body: string;
collection: "docs";
data: InferEntrySchema<"docs">
} & { render(): Render[".md"] };
"en/support/troubleshooting.md": {
id: "en/support/troubleshooting.md";
slug: "en/support/troubleshooting";
body: string;
collection: "docs";
data: InferEntrySchema<"docs">
} & { render(): Render[".md"] };
"hi/guides/architecture.md": {
id: "hi/guides/architecture.md";
slug: "hi/guides/architecture";
Expand Down
16 changes: 9 additions & 7 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import starlight from '@astrojs/starlight';

// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
integrations: [
starlight({
title: 'CREDEBL Docs',
logo: {
alt: 'CREDEBL Logo',
Expand Down Expand Up @@ -40,17 +40,19 @@ export default defineConfig({
{ label: 'What is CREDEBL?', link: '/en/intro/what-is-credebl/' },
{ label: 'Platform Features', link: '/en/intro/platform-features/' },
{ label: 'Intro to SSI', link: '/en/intro/intro-to-ssi/' },
{ label: 'Key Concepts', link: '/en/intro/key-concepts/' },
//{ label: 'Key Concepts', link: '/en/intro/key-concepts/' },
],
},
{
label: 'Guides',
items: [
// Each item here is one entry in the navigation menu.
{ label: 'Getting Started', link: '/en/guides/getting-started/' },
{ label: 'Architecture', link: '/en/guides/architecture/' },
{ label: 'Local Setup', link: '/en/guides/local-setup/' },
{ label: 'Self-hosting', link: '/en/guides/self-hosting/' },
{ label: 'Getting Started', link: '/en/guides/getting-started/' },
{ label: 'Architecture', link: '/en/guides/architecture/' },
{ label: 'NATS', link: '/en/guides/nats/' },
{ label: 'Local Setup using NPM',link: '/en/guides/local-setup-using-npm/' },
{ label: 'Local Setup using Docker', link: '/en/guides/local-setup-using-docker/' },
//{ label: 'Self-hosting', link: '/en/guides/self-hosting/' },
{ label: 'Using credebl.id', link: '/en/guides/using-credebl-id/' },
],
},
Expand Down
Loading

0 comments on commit 9c06061

Please sign in to comment.