This is the Celo Foundation website, which is deployed to https://celo.org/
-
Ensure you have installed the latest dependencies:
yarn
-
Decrypt the secrets files
-
Install the gcloud SDK.
brew cask install google-cloud-sdk
-
Log in (You may need to be granted additional permissions).
gcloud auth login
-
From the root of monorepo:
yarn run keys:decrypt
-
-
From the web directory, run
yarn run dev
. The server will now be accessible at http://localhost:3000.
The website uses React.js, Next.js, and React Native Web. React is a great library for building user interfaces. Next.js takes care of server-rendering React apps in a simple way and preloading/transitioning pages quickly. React Native web allows us to use the same code in the application on the website, specifically the way we do CSS.
/pages
files in here become page routes which reflect the folder structure they are in
/pages/api
files in here become api routes see next.js docs for more information
server
files here are strictly for serverside code. (currently only reletive paths are working)
public
static files can be found here. such as Celo Whitepapers (including stability paper) and i18n locale files.
src
most files here including, components, tests for components, images.
🧰 tools: jest
, @testing-library/react
✅ run tests with yarn test
📸 update snapshots with yarn test -u
Each page should have a snapshot test found in src/_page-tests
. More interactive components should have an additional tests for various states/ interactions. These test files should be coolocated with the file they are testing.
see release.md