BuildShip Documentation source code
BuildShip is a lowcode visual backend builder that lets you ship APIs, scheduled jobs, backend cloud functions instantly. Powered by AI, create your own workflow nodes, connect to any tool, database and create scalable backend for your apps.
We welcome contributions in the form of raised issues, improvements, updates, or new content additions to the documentation such as guides, tutorials.
You can either submit the improvement needed to the docs using this form (or)
Submit directly submit a PR to this code repo by following the steps below.
- Fork this repo: Click the "Fork" button at the top of the page. This action will create a copy of the repository in your GitHub account.
- Clone your fork: Open your terminal and run the following command to clone the repository to your local machine:
git clone https://github.com/your-username/buildship-docs.git
- Set remotes: Navigate into the cloned repository and set the remotes for easier collaboration. Run the following commands:
cd buildship-docs
git remote add upstream https://github.com/rowyio/buildship-docs.git
git remote add origin https://github.com/your-username/buildship-docs.git
- Confirm the remotes are set correctly with:
git remote -v
Run the following command to install project dependencies:
pnpm install
Execute the following command to start the development server:
pnpm dev
Visit localhost:3000
in your browser to view the development environment.
Once you have setup the Dev environment, make the necessary changes locally and then raise a PR to the main branch to propose the changes to the team.
Thanks to Nextra for docs template