Skip to content

Commit f6aab23

Browse files
Merge pull request #1 from matzemathics/main
Basic project structure
2 parents 0e57c62 + 0083df5 commit f6aab23

21 files changed

+9073
-1
lines changed

.github/workflows/ci.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- name: Install dependencies
16+
run: npm ci
17+
18+
- name: Build
19+
run: npm run build
20+
21+
- name: Upload
22+
uses: actions/upload-pages-artifact@v3
23+
with:
24+
path: dist/nemo-doc
25+
26+
deploy:
27+
needs: build
28+
permissions:
29+
contents: read
30+
pages: write
31+
id-token: write
32+
runs-on: ubuntu-latest
33+
environment:
34+
name: github-pages
35+
url: ${{steps.deployment.outputs.page_url}}
36+
steps:
37+
- name: Deploy artifact
38+
id: deployment
39+
uses: actions/deploy-pages@v4

.gitignore

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# build output
2+
dist/
3+
# generated types
4+
.astro/
5+
6+
# dependencies
7+
node_modules/
8+
9+
# logs
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
pnpm-debug.log*
14+
15+
16+
# environment variables
17+
.env
18+
.env.production
19+
20+
# macOS-specific files
21+
.DS_Store
22+
23+
# vscode
24+
.vscode/

README.md

+16-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Nemo Documentation
22

3-
The documentation of the [Nemo rule engine](https://github.com/knowsys/nemo) will soon move to this location.
3+
The documentation of the [Nemo rule engine](https://github.com/knowsys/nemo) is in the process of being built in this repository.
44

55
For now, you can find the documentation in the [Nemo wiki pages](https://github.com/knowsys/nemo/wiki).
6+
7+
[![Built with Starlight](https://astro.badg.es/v2/built-with-starlight/tiny.svg)](https://starlight.astro.build)
8+
9+
## Commands
10+
11+
All commands are run from the root of the project, from a terminal:
12+
13+
| Command | Action |
14+
| :------------------------ | :----------------------------------------------- |
15+
| `npm install` | Installs dependencies |
16+
| `npm run dev` | Starts local dev server at `localhost:4321` |
17+
| `npm run build` | Build your production site to `./dist/` |
18+
| `npm run preview` | Preview your build locally, before deploying |
19+
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
20+
| `npm run astro -- --help` | Get help using the Astro CLI |

astro.config.mjs

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
import { defineConfig } from 'astro/config';
2+
import starlight from '@astrojs/starlight';
3+
4+
// https://astro.build/config
5+
export default defineConfig({
6+
site: 'https://knowsys.github.io/',
7+
base: '/nemo-doc',
8+
outDir: './dist/nemo-doc',
9+
10+
integrations: [
11+
starlight({
12+
title: 'Nemo Rule Engine',
13+
social: {
14+
github: 'https://github.com/knowsys/nemo',
15+
},
16+
sidebar: [
17+
{
18+
label: 'Guides',
19+
items: [
20+
// Each item here is one entry in the navigation menu.
21+
{ label: 'Installing', slug: 'guides/installing' },
22+
{ label: 'Command Line', slug: 'guides/cli' },
23+
{ label: 'Rule Language', slug: 'guides/tour' },
24+
{ label: 'Broser Integration', slug: 'guides/wasm' },
25+
{ label: 'Python API', slug: 'guides/python' },
26+
],
27+
},
28+
{
29+
label: 'Language Reference',
30+
autogenerate: { directory: 'reference' },
31+
},
32+
],
33+
}),
34+
],
35+
});

0 commit comments

Comments
 (0)