Skip to content

Latest commit

 

History

History
80 lines (49 loc) · 1.79 KB

README.md

File metadata and controls

80 lines (49 loc) · 1.79 KB

Safe Documentation

License GitHub package.json version (branch)

This repository hosts Safe documentation.

The documentation is built with Nextra and is live at docs.safe.global.

Installation

Install the dependencies using pnpm:

pnpm install

Development

Git hooks are set up to run tests and linting checks before every git push. These hooks can be executed locally by running the following command:

pnpm prepush

All links in the documentation are checked for validity on every pull request. These checks can be executed locally by running the following command:

pnpm linkcheck

Execution

The project can be run with a server that's executed in development and production mode.

Development mode

Run the server in development mode using the following command:

pnpm dev

Production mode

Build the project:

pnpm build

Run the server in production mode using the following command:

pnpm start

Testing

Create an environment file in the root of the project and copy the content from the .env.example file using the following command:

cp .env.example .env

Remember to update the environment variables once the .env file is created.

Run the tests using the following command:

pnpm test

License

This project is licensed under the MIT License.

Contributing

Contributions are more than welcome! Please open an issue or create a pull request by following our contributions guidelines.