βοΈ Contributing to the documentation β
This project takes a "docs first" approach by first planning the development in the documentation and then working on implementation. Thus, the place to start is by contributing to the docs. It's easy and fun.
The docs are developed with Vitepress which is super awesome.
Make sure you have followed the steps on the Getting started page.
The documentation lives in the docs/
folder of the repo.
Development β
To develop the docs in real time type npm run docs:dev
in the top level project folder. You should see something like this:
β npm run docs:dev
> smile@0.0.0 docs:dev
> vitepress dev docs
vitepress v1.6.3
β Local: http://localhost:5173/
β Network: use --host to expose
β press h to show help
In this case, opening http://localhost:3000/
in your browser (it might be a different number if port 3000 on your computer is already in use) will let you see the current documentation website.
Now let's look at the current files in the docs/
folder:
docs/
βββ .vitepress
β βββ config.js
βββ contributing.md
βββ index.md
βββ introduction.md
βββ ...
The docs are written in plain markdown. Just edit or add new .md
files as you like. You can also add new subfolders. To add them to the side bar or nav bar at the top take a look inside docs/.vitepress/config.js
. It is mildly self-explanatory (full docs here).
One cool thing about running npm run docs:dev
is the website uses hot module reloading so any changes you save to the markdown or configuration files will automatically update your browser giving you instant feedback. It is incredibly fast thanks to Vite.
When you are finished making changes to the docs just use git commands to stage the files, commit them and (when you are ready) push them to the github repo. There are several useful tutorials available online for using git and GitHub.
Technical Figures β
We strongly encourage the use of Figma/FigJam for technical figures and illustrations. A good starting place is the Diagram basics in FigJam.
What happens next? β
Currently, the docs are live at http://smile.gureckislab.org. When you commit changes to the docs/
folder in the main
GitHub branch, a Github Actions script runs which automatically builds the static website using VitePress and then syncs the files to the server. Thus, simply pushing your changes to the master branch will update the website, there's nothing else to think about. This is a core design principle of π« Smile: don't sweat the dumb stuff.
If the build fails on the Github Action the website will remain unchanged. You can get diagnostic information about the auto-deploy process on the Github Actions tab of the repo. If you suspect your changes to the docs introduced a bug that was not caught by the development server, you can check the build process locally by running npm run docs:build
.