Repo for the Nimbus website https://nimbus.team
Go to file
dependabot[bot] 6f6f3cc811
Bump socket.io-parser from 3.3.2 to 3.3.3
Bumps [socket.io-parser](https://github.com/socketio/socket.io-parser) from 3.3.2 to 3.3.3.
- [Release notes](https://github.com/socketio/socket.io-parser/releases)
- [Changelog](https://github.com/socketio/socket.io-parser/blob/main/CHANGELOG.md)
- [Commits](https://github.com/socketio/socket.io-parser/compare/3.3.2...3.3.3)

---
updated-dependencies:
- dependency-name: socket.io-parser
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-11-09 23:48:23 +00:00
js fix fetching from ghost api, remove unused code 2019-11-19 11:34:13 +01:00
scaffolds Initial site outline 2018-09-28 20:47:04 +02:00
scripts next button fix (#78) 2020-08-16 10:41:28 +02:00
source Remove no longer active team members 2022-10-10 15:56:22 +03:00
themes/navy Remove photos of no longer active team members 2022-10-10 15:59:24 +03:00
.eslintignore Initial site outline 2018-09-28 20:47:04 +02:00
.eslintrc Initial site outline 2018-09-28 20:47:04 +02:00
.gitignore remove built js, no need for it to be in repo 2019-01-15 10:08:21 +07:00
Jenkinsfile ci: upgrade packages and use yarn instead of npm 2022-01-05 13:27:13 +01:00
LICENSE Initial site outline 2018-09-28 20:47:04 +02:00
README.md readme edits (signed commit) (#80) 2020-08-16 11:21:21 +02:00
_config.dev.yml change nimbus.status.im to nimbus.team 2019-11-18 14:12:45 +01:00
_config.prod.yml change nimbus.status.im to nimbus.team 2019-11-18 14:12:45 +01:00
gulpfile.js ci: upgrade packages and use yarn instead of npm 2022-01-05 13:27:13 +01:00
package.json ci: upgrade packages and use yarn instead of npm 2022-01-05 13:27:13 +01:00
yarn.lock Bump socket.io-parser from 3.3.2 to 3.3.3 2022-11-09 23:48:23 +00:00

README.md

Nimbus Site

This repo holds the code for two sites:

There is an edit button on each page, which will take you directly to the document you need to edit on the develop branch.

The recommended flow is to create a PR against develop. We can then allow a large group of people to push directly to develop and show their changes on the staging site when asking for review, which should smooth out and speed up the process considerably for everyone. master is obviously protected, and will only have changes merged in from develop once accepted.

N.B. make sure you've set up signed commits before submitting a PR (this repository requires all commits to be signed).

Adding a New Page

If you want to add a page, rather than just edit, you'll need to make sure it appears on the sidebar and is accessible to everyone.

  1. Add your page to source/docs/<your_file_here>.md
  2. In source/_data/sidebars.yml add the appropriate text to the appropriate place.
  3. In themes/navy/languages/en.yml edit the sidebars section to make sure that your new text in sidebars.yml is rendered correctly.

Testing locally

Make sure you have Node.js installed first.

  1. Open Terminal and navigate to the project root directory,
  2. Run yarn install
  3. Run yarn build
  4. Run yarn devel
  5. Open http://localhost:8000 in a browser

This prevents the need for any global installs, and allows you to live reload any changes you make.