wasp/web
2024-04-23 12:33:07 +02:00
..
blog Add client config to SDK API (#1893) 2024-03-15 16:53:42 +01:00
docs update codespace link to release branch 2024-04-22 18:09:55 +02:00
src Adds migration docs to 0.13 (#1890) 2024-03-18 13:09:37 +01:00
static Adds Keycloak OAuth provider (#1876) 2024-03-18 13:09:08 +01:00
versioned_docs Update overview.md 2024-04-23 12:33:07 +02:00
versioned_sidebars Squash docs for 0.13.0 and 0.13.1 (#1974) 2024-04-18 13:41:13 +02:00
.gitignore Created new landing page for Beta. 2022-11-26 19:01:40 +01:00
.npmrc We cannot build unless we use the right version of npm 2022-01-31 14:29:29 +01:00
.prettierignore New prettier config, ignore, added TW plugin 2023-11-16 17:15:18 +01:00
.prettierrc New prettier config, ignore, added TW plugin 2023-11-16 17:15:18 +01:00
babel.config.js Run prettier format 2023-11-16 17:15:18 +01:00
docusaurus.config.js Now docs in development have 'next' version as default. 2024-01-23 12:01:56 +01:00
package-lock.json Bump webpack-dev-middleware from 5.3.3 to 5.3.4 in /web (#1917) 2024-04-04 13:08:24 +02:00
package.json Adds migration docs to 0.13 (#1890) 2024-03-18 13:09:37 +01:00
README.md Versioned docs (#1628) 2024-01-11 16:37:06 +01:00
sidebars.js Adds migration docs to 0.13 (#1890) 2024-03-18 13:09:37 +01:00
tailwind.config.js Run prettier format 2023-11-16 17:15:18 +01:00
versions.json Squash docs for 0.13.0 and 0.13.1 (#1974) 2024-04-18 13:41:13 +02:00
WRITING-DOCS.md Restructures docs (#1333) 2023-08-11 16:47:49 +02:00

Website

This website is built using Docusaurus 2, a modern static website generator.

It consists of three main parts:

Installation

$ npm install

Local Development

$ npm 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

$ npm build

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

To run this version of code and check that it works correctly, run npm run serve.

Deployment

We are deploying to GitHub pages, and that can easily be done with the following command.

First, ensure you are on the release branch. Next, run:

$ GIT_USER=<Your GitHub username> USE_SSH=true npm run deploy

This command will build the website and push it to the gh-pages branch, which will get it deployed to https://wasp-lang.dev !

Multiple documentation versions

We maintain docs for multiple versions of Wasp.

Docusaurus docs on this: https://docusaurus.io/docs/versioning .

Docusaurus recognizes "current" docs, which are docs in ./docs dir, and also individual versioned docs, which are docs under versioned_docs/{version}/. So we have 1 "current" docs and a number of versioned docs.

We stick with Docusaurus' recommended/default approach for multiple doc versions, which says that "current" docs, which reside in docs/ dir and are served under /docs/next URL, are work in progress (even though they are named "current", which is a bit misleading). So "current" docs are docs for the version of Wasp that is currently in development, not for the last released version, and they are not meant to be consumed by typical Wasp user.

Each versioned documentation consists of versioned_docs/{version} and versioned_sidebars/{version}. There is also versions.json file which is just a list of versioned docs.

By default, "current" docs are served under URL {baseUrl}/docs/next, each versioned doc is served under URL {baseUrl}/docs/{version}, and last versioned docs (first version in versions.json) are served under URL {baseUrl}/docs/, as the default/latest docs.

Since we don't want our users to read docs/next ("current" docs), we don't publish these when we deploy docs, instead we build them only during development.

When/how do we create new version of docs from "current" docs?

When releasing new version of Wasp, what we do is run npm run docusaurus docs:version {version} to create new versioned docs from the current docs. We do this on every new Wasp release.

This command does everything for us, and since we use Docusaurus' default settings for versions, there is nothing else we need to do, it will be picked up as the lastest version by default.

Which version of docs should I be editing?

If you are writing/updating docs on main for the new release of Wasp, you should edit "current" docs (docs/).

If you are (hot)fixing currently published docs on release, then you should edit the versioned docs (versioned_docs/{version}), for whatever version you want to do this for. If you want this change to also be present in all the new docs, then you should also do it for the "current" docs (docs/) (yes, that means duplicating the same change).

Prefer doing doc edits on main, as that keeps the whole process simpler, and do changes to docs on release only if it really matters to fix the already published versioned docs.

Deleting versions

We should not keep too many versions of documentation, especially now in Beta when we are moving fast.

Therefore, we should be quite liberal with deleting the older versions of docs.

Also, it might make sense to delete the previous version of docs if only bug fixes were done in the latest version.