-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8911a16
commit f351193
Showing
71 changed files
with
11,485 additions
and
22,139 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"_variables": { | ||
"lastUpdateCheck": 1729068027699 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/// <reference types="astro/client" /> | ||
/// <reference path="astro/content.d.ts" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" }, | ||
}, | ||
], | ||
}), | ||
], | ||
}); |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.