Skip to content

Commit

Permalink
starlight move
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonVanherweghe committed Oct 16, 2024
1 parent 8911a16 commit f351193
Show file tree
Hide file tree
Showing 71 changed files with 11,485 additions and 22,139 deletions.
File renamed without changes.
5 changes: 5 additions & 0 deletions .astro/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"_variables": {
"lastUpdateCheck": 1729068027699
}
}
2 changes: 2 additions & 0 deletions .astro/types.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/// <reference types="astro/client" />
/// <reference path="astro/content.d.ts" />
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
# Build output to publish to the `gh-pages` branch:
publish_dir: ./build
publish_dir: ./dist
# The following lines assign commit authorship to the official
# GH-Actions bot for deploys to `gh-pages` branch:
# https://github.com/actions/checkout/issues/13#issuecomment-724415212
Expand Down
55 changes: 39 additions & 16 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,20 +1,43 @@
# Dependencies
/node_modules
node_modules/
dist/
*.tsbuildinfo
.DS_Store
.vercel
.netlify
_site/
scripts/smoke/*-main/
scripts/memory/project/src/pages/
benchmark/projects/
benchmark/results/
test-results/
*.log
package-lock.json
.turbo/
.eslintcache
.pnpm-store

# Production
/build
# do not commit .env files or any files that end with `.env`
*.env

# Generated files
.docusaurus
.cache-loader
packages/astro/src/**/*.prebuilt.ts
packages/astro/src/**/*.prebuilt-dev.ts
packages/astro/test/units/_temp-fixtures/*
!packages/astro/test/units/_temp-fixtures/package.json
packages/integrations/**/.netlify/

# Misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
# exclude IntelliJ/WebStorm stuff
.idea

# ignore content collection generated files
packages/**/test/**/fixtures/**/.astro/
packages/**/test/**/fixtures/**/env.d.ts
packages/**/e2e/**/fixtures/**/.astro/
packages/**/e2e/**/fixtures/**/env.d.ts
examples/**/.astro/
examples/**/env.d.ts

npm-debug.log*
yarn-debug.log*
yarn-error.log*
# make it easy for people to add project-specific Astro settings that they don't
# want to share with others (see
# https://github.com/withastro/astro/pull/11759#discussion_r1721444711)
*.code-workspace
.vscode
34 changes: 2 additions & 32 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,3 @@
# Website
# Devine Workflows

This website is built using [Docusaurus 2](https://docusaurus.io/), a modern static website generator.

## Installation

```bash
npm install
```

## Local Development

```bash
npm run start
```

This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.

## Build

```bash
npm run build
```

This command generates static content into the `build` directory and can be served using any static contents hosting service.

## Linting

Please lint your markdown files by using <https://github.com/DavidAnson/markdownlint>

## Deployment

Make a PR to the `main` branch. The site will be deployed automatically.
A collection of workflows.
50 changes: 50 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
// https://astro.build/config
export default defineConfig({
site: "https://devinekask.github.io/",
base: "/workflows",
integrations: [
starlight({
title: "Workflows",
favicon: "/favicon.ico",
customCss: ["./src/styles/custom.css"],
editLink: {
baseUrl: "https://github.com/devinekask/workflows/",
},
logo: {
src: "./src/assets/img/devinelogo.svg",
},
sidebar: [
{
label: "Terminal",
slug: "terminal-01",
},
{
label: "Git",
autogenerate: { directory: "git" },
},
{
label: "Modules",
autogenerate: { directory: "modules" },
},
{
label: "Vite",
slug: "vite-01-intro",
},
{
label: "Homebrew",
slug: "homebrew-01-intro",
},
{
label: "Code quality",
autogenerate: { directory: "code quality" },
},
{
label: "Deployment",
autogenerate: { directory: "deployment" },
},
],
}),
],
});
7 changes: 0 additions & 7 deletions docs/code quality/_category_.json

This file was deleted.

7 changes: 0 additions & 7 deletions docs/deployment/_category_.json

This file was deleted.

7 changes: 0 additions & 7 deletions docs/deployment/combell/_category_.json

This file was deleted.

7 changes: 0 additions & 7 deletions docs/deployment/ftp/_category_.json

This file was deleted.

7 changes: 0 additions & 7 deletions docs/git/_category_.json

This file was deleted.

8 changes: 0 additions & 8 deletions docs/git/basics/_category_.json

This file was deleted.

8 changes: 0 additions & 8 deletions docs/git/collaboration/_category_.json

This file was deleted.

7 changes: 0 additions & 7 deletions docs/modules/_category_.json

This file was deleted.

126 changes: 0 additions & 126 deletions docusaurus.config.js

This file was deleted.

Loading

0 comments on commit f351193

Please sign in to comment.