Skip to content

Commit 50f2e05

Browse files
committed
Migrated website to Astro
Signed-off-by: Jean-Baptiste Bianchi <[email protected]>
1 parent b02a074 commit 50f2e05

File tree

190 files changed

+8589
-1254
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

190 files changed

+8589
-1254
lines changed

.dockerignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.DS_Store
2+
node_modules
3+
dist

.github/CODEOWNERS

-1
This file was deleted.

.github/ISSUE_TEMPLATE/website.md

-10
This file was deleted.

.github/OWNERS

-8
This file was deleted.

.github/PULL_REQUEST_TEMPLATE.md

-7
This file was deleted.

.gitignore

+18-16
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,24 @@
1+
# build output
2+
dist/
3+
4+
# generated types
5+
.astro/
6+
7+
# dependencies
18
node_modules/
2-
package-lock.json
3-
/tmp
49

5-
# Hugo
6-
.hugo_build.lock
7-
/public
8-
resources/
10+
# logs
11+
npm-debug.log*
12+
yarn-debug.log*
13+
yarn-error.log*
14+
pnpm-debug.log*
915

10-
# vim temporary files
11-
*~
12-
*.sw?
16+
# environment variables
17+
.env
18+
.env.production
1319

14-
# system files
20+
# macOS-specific files
1521
.DS_Store
1622

17-
# IDE files
18-
.idea
19-
20-
# VS Code
21-
/.vscode/**
22-
!/.vscode/cspell.json
23+
# jetbrains setting folder
24+
.idea/

.gitpod.Dockerfile

-1
This file was deleted.

.gitpod.yml

+5-11
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,10 @@
1-
image:
2-
file: .gitpod.Dockerfile
3-
4-
# List the start up tasks. You can start them in parallel in multiple terminals.
5-
# https://www.gitpod.io/docs/config-start-tasks/
61
tasks:
7-
- command: python3 -m http.server
8-
9-
# List the ports you want to expose and what to do when they are served.
10-
# https://www.gitpod.io/docs/config-ports/
2+
- init: npm install
3+
command: npm run dev
4+
115
ports:
12-
- port: 8080
13-
onOpen: open-preview
6+
- port: 4321
7+
onOpen: open-browser
148

159
# Enable prebuilds of your project to enable faster workspace start times.
1610
# https://www.gitpod.io/docs/prebuilds/#configure-the-github-app

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
20.11.1

.vscode/extensions.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"recommendations": ["astro-build.astro-vscode"],
3+
"unwantedRecommendations": []
4+
}

.vscode/launch.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"command": "./node_modules/.bin/astro dev",
6+
"name": "Development server",
7+
"request": "launch",
8+
"type": "node-terminal"
9+
}
10+
]
11+
}

Dockerfile

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
FROM floryn90/hugo:ext-alpine
2-
3-
RUN apk add git && \
4-
git config --global --add safe.directory /src
1+
FROM node:lts
2+
WORKDIR /app
3+
COPY . .
4+
RUN npm i
5+
RUN npx astro telemetry disable
6+
EXPOSE 4321
7+
CMD ["npx", "astro", "dev", "--host"]

README.md

+32-5
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,39 @@
22

33
This repository hosts the website for the [Serveless Workflow Specification](https://github.com/serverlessworkflow/specification) project at [https://serverlessworkflow.io](https://serverlessworkflow.io).
44

5-
## Contributing to the website
5+
## 🧑 Contributing to the website
66

7-
The website uses [Hugo](https://gohugo.io/) and [Docsy](https://www.docsy.dev/). You can find more information about how to get started with this stack [here](https://www.docsy.dev/docs/get-started/).
7+
The website uses [Astro](https://astro.build/). You can find more information about how to get started with this stack [here](https://docs.astro.build/en/getting-started/).
8+
9+
For the styling, it relies on [TailWind CSS](https://tailwindcss.com/) and [Daisy UI](https://daisyui.com/).
810

911
To contribute to the website you don't need to have in-deth web design knowledge:
12+
- To publish a blog post just add a new Markdown page to the [`blog`](src/content/blog) directory. You can always use the blog posts in this repository as a reference.
13+
- For more complex changes to the website, have a look at the [Astro Docs](https://docs.astro.build/en/getting-started/)
14+
15+
## 🚀 Project Structure
16+
17+
To learn more about the folder structure of an Astro project, refer to [our guide on project structure](https://docs.astro.build/en/basics/project-structure/).
18+
19+
## 🧞 Commands
20+
21+
All commands are run from the root of the project, from a terminal:
22+
23+
| Command | Action |
24+
| :------------------------ | :----------------------------------------------- |
25+
| `npm install` | Installs dependencies |
26+
| `npm run dev` | Starts local dev server at `localhost:4321` |
27+
| `npm run build` | Build your production site to `./dist/` |
28+
| `npm run preview` | Preview your build locally, before deploying |
29+
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
30+
| `npm run astro -- --help` | Get help using the Astro CLI |
31+
32+
33+
Alternatively, you can use Docker to run the project and connect on `localhost:4321`:
34+
```
35+
docker compose up --remove-orphans --watch
36+
```
37+
38+
## 👀 Want to learn more?
1039

11-
- To add a new content [follow this guide](https://www.docsy.dev/docs/adding-content/content/)
12-
- To publish a blog post just add a new Markdown page to the [`blog`](blog) directory. You can always use the blog posts in this repository as a reference. [Here's a good example](https://github.com/google/docsy-example/blob/main/content/en/blog/releases/in-depth-monoliths-detailed-spec.md).
13-
- For more complex changes to the website, look at the [Docsy](https://github.com/google/docsy) repository as a reference. Sometimes you might need to change the [default templates](https://github.com/google/docsy/tree/main/layouts) to accomodate custom changes.
40+
Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).

_redirects

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# https://docs.netlify.com/routing/redirects/redirect-options/
33
/schemas/previous/* /schemas/0.8/:splat 200
44
/schemas/latest/* /schemas/0.9/:splat 200
5-
/schemas/snapshot/* /schemas/1.0.0-alpha2/:splat 200
5+
/schemas/snapshot/* /schemas/1.0.0-alpha5/:splat 200

0 commit comments

Comments
 (0)