1
0
Fork 0
mirror of synced 2024-07-02 04:50:44 +12:00
budibase/docs/CONTRIBUTING.md

287 lines
12 KiB
Markdown
Raw Normal View History

2022-06-20 23:48:45 +12:00
# Contributing
From opening a bug report to creating a pull request: every contribution is appreciated and welcome. If you're planning to implement a new feature or change the api please [create an issue](https://github.com/Budibase/budibase/issues/new/choose) first. This way we can ensure that your precious work is not in vain.
## Table of contents
2022-07-28 22:32:24 +12:00
- [Where to start](#not-sure-where-to-start)
- [Contributor Licence Agreement](#contributor-license-agreement-cla)
- [Glossary of Terms](#glossary-of-terms)
- [Contributing to Budibase](#contributing-to-budibase)
2022-06-20 23:48:45 +12:00
## Not Sure Where to Start?
2022-06-21 01:18:28 +12:00
Budibase is a low-code web application builder that creates svelte-based web applications.
2022-06-20 23:48:45 +12:00
Budibase is a monorepo managed by [lerna](https://github.com/lerna/lerna). Lerna manages the building and publishing of the budibase packages. At a high level, here are the packages that make up budibase.
- **packages/builder** - contains code for the budibase builder client side svelte application.
- **packages/client** - A module that runs in the browser responsible for reading JSON definition and creating living, breathing web apps from it.
- **packages/server** - The budibase server. This [Koa](https://koajs.com/) app is responsible for serving the JS for the builder and budibase apps, as well as providing the API for interaction with the database and file system.
2023-02-03 01:36:25 +13:00
- **packages/worker** - This [Koa](https://koajs.com/) app is responsible for providing global apis for managing your budibase installation. Authentication, Users, Email, Org and Auth configs are all provided by the worker.
2022-06-20 23:48:45 +12:00
## Contributor License Agreement (CLA)
In order to accept your pull request, we need you to submit a CLA. You only need to do this once. If you are submitting a pull request for the first time, just submit a Pull Request and our CLA Bot will give you instructions on how to sign the CLA before merging your Pull Request.
All contributors must sign an [Individual Contributor License Agreement](https://github.com/budibase/budibase/blob/next/.github/cla/individual-cla.md).
If contributing on behalf of your company, your company must sign a [Corporate Contributor License Agreement](https://github.com/budibase/budibase/blob/next/.github/cla/corporate-cla.md). If so, please contact us via community@budibase.com.
If for any reason, your first contribution is in a PR created by other contributor, please just add a comment to the PR
with the following text to agree our CLA: "I have read the CLA Document and I hereby sign the CLA".
2022-06-20 23:48:45 +12:00
## Glossary of Terms
To understand the budibase API, it can be helpful to understand the top level entities that make up Budibase.
### Client
A client represents a single budibase customer. Each budibase client will have 1 or more budibase servers. Every client is assigned a unique ID.
### App
2023-02-03 01:36:25 +13:00
A client can have one or more budibase applications. Budibase applications would be things like "Developer Inventory Management" or "Goat Herder CRM". Think of a budibase application as a tree.
2022-06-20 23:48:45 +12:00
### Database
An App can have one or more databases. Keeping with our [dendrology](https://en.wikipedia.org/wiki/Dendrology) analogy - think of an database as a branch on the tree. Databases are used to keep data separate for different instances of your app. For example, if you had a CRM app, you may create a database for your US office, and a database for your Australian office. Databases allow us to support [multitenancy](https://www.gartner.com/en/information-technology/glossary/multitenancy) in budibase applications.
### Table
Tables in budibase are almost akin to tables in relational databases. A table may be a "Car" or an "Employee". They are the main building blocks for the creation and management of backend data in budibase.
### View
A View is an advanced feature in budibase that allows you to write a custom query using [MapReduce](https://pouchdb.com/guides/queries.html) queries. Views enable powerful query functionality and calculations, allowing you to do more with your data.
### Page
A page in budibase is actually a single, self contained svelte web app. There are only 2 pages in budibase. The **login** page and the **main** page.
### Screen
A screen is a component within a single page. Generally, screens represent client side routes, and can be switched without refreshing the page.
### Component
A component is the basic frontend building block of a budibase app.
### Component Library
2023-02-03 01:36:25 +13:00
Component libraries are collections of components as well as the definition of their props contained in a file called `components.json`.
2022-06-20 23:48:45 +12:00
## Contributing to Budibase
2023-02-03 01:36:25 +13:00
- Please maintain the existing code style.
2022-06-20 23:48:45 +12:00
2023-02-03 01:36:25 +13:00
- Please try to keep your commits small and focused.
2022-06-20 23:48:45 +12:00
2023-02-03 01:36:25 +13:00
- Please write tests.
2022-06-20 23:48:45 +12:00
2023-02-03 01:36:25 +13:00
- If the project diverges from your branch, please rebase instead of merging. This makes the commit graph easier to read.
2022-06-20 23:48:45 +12:00
2023-12-12 03:25:57 +13:00
- Once your work is completed, please raise a PR against the `master` branch with some information about what has changed and why.
2022-06-20 23:48:45 +12:00
### Getting Started For Contributors
2023-02-03 01:36:25 +13:00
#### 1. Prerequisites
2023-12-23 03:02:48 +13:00
- NodeJS version `20.x.x`
2023-02-03 01:36:25 +13:00
- Python version `3.x`
2023-02-04 00:12:30 +13:00
### Using asdf (recommended)
2023-02-03 01:36:25 +13:00
Asdf is a package manager that allows managing multiple dependencies.
2022-06-20 23:48:45 +12:00
2023-02-04 00:12:30 +13:00
You can install them following any of the steps described below:
- Install using script (only for mac users):
2022-06-20 23:48:45 +12:00
2023-02-03 02:45:36 +13:00
`./scripts/install-contributor-dependencies.sh`
2023-02-03 01:36:25 +13:00
2023-02-04 00:12:30 +13:00
- Or, manually:
2023-02-03 02:45:36 +13:00
2023-02-04 00:12:30 +13:00
- Installation steps: https://asdf-vm.com/guide/getting-started.html
- asdf plugin add nodejs
- asdf plugin add python
- npm install -g yarn
2023-02-03 01:36:25 +13:00
2023-02-04 00:12:30 +13:00
### Using NVM and pyenv
2023-02-03 01:36:25 +13:00
2023-02-04 00:21:15 +13:00
- NVM:
- Install: https://github.com/nvm-sh/nvm#installing-and-updating
- Setup: `nvm use`
- Pyenv:
- Install: https://github.com/pyenv/pyenv#installation
- Setup: `pyenv install -v 3.7.2`
2023-02-03 01:36:25 +13:00
2023-02-03 02:45:36 +13:00
- _yarn -_ `npm install -g yarn`
2022-06-20 23:48:45 +12:00
#### 2. Clone this repository
`git clone https://github.com/Budibase/budibase.git`
then `cd ` into your local copy.
2023-02-03 01:36:25 +13:00
#### 3. Install and Build
2022-06-20 23:48:45 +12:00
| **NOTE**: On Windows, all yarn commands must be executed on a bash shell (e.g. git bash)
To develop the Budibase platform you'll need [Docker](https://www.docker.com/) and [Docker Compose](https://docs.docker.com/compose/) installed.
##### Quick method
`yarn setup` will check that all necessary components are installed and setup the repo for usage.
2023-10-11 00:37:30 +13:00
If you have access to the `@budibase/pro` submodule then please follow the Pro section of this guide before running the above command.
2022-06-20 23:48:45 +12:00
##### Manual method
The following commands can be executed to manually get Budibase up and running (assuming Docker/Docker Compose has been installed).
`yarn` to install project dependencies
`yarn build` will build all budibase packages.
2023-10-11 00:37:30 +13:00
If you have access to the `@budibase/pro` submodule then please follow the Pro section of this guide before running the above commands.
2022-06-20 23:48:45 +12:00
#### 4. Running
To run the budibase server and builder in dev mode (i.e. with live reloading):
1. Open a new console
2. `yarn dev` (from root)
3. Access the builder on http://localhost:10000/builder
This will enable watch mode for both the builder app, server, client library and any component libraries.
#### 5. Debugging using VS Code
2023-02-03 01:36:25 +13:00
To debug the budibase server and worker a VS Code launch configuration has been provided.
2022-06-20 23:48:45 +12:00
2023-02-03 01:36:25 +13:00
Visit the debug window and select `Budibase Server` or `Budibase Worker` to debug the respective component.
2022-06-20 23:48:45 +12:00
Alternatively to start both components simultaneously select `Start Budibase`.
2022-06-21 01:18:28 +12:00
In addition to the above, the remaining budibase components may be run in dev mode using: `yarn dev:noserver`.
2022-06-20 23:48:45 +12:00
#### 6. Cleanup
If you wish to delete all the apps created in development and reset the environment then run the following:
1. `yarn nuke:docker` will wipe all the Budibase services
2. `yarn dev` will restart all the services
### Backend
2022-06-21 01:18:28 +12:00
For the backend we run [Redis](https://redis.io/), [CouchDB](https://couchdb.apache.org/), [MinIO](https://min.io/) and [NGINX](https://www.nginx.com/) in Docker compose. This means that to develop Budibase you will need Docker and Docker compose installed. The backend services are then run separately as Node services with nodemon so that they can be debugged outside of Docker.
2022-06-20 23:48:45 +12:00
### Data Storage
When you are running locally, budibase stores data on disk using docker volumes. The volumes and the types of data associated with each are:
2023-02-03 01:36:25 +13:00
- `redis_data`
2022-06-20 23:48:45 +12:00
- Sessions, email tokens
2023-02-03 01:36:25 +13:00
- `couchdb3_data`
2022-06-20 23:48:45 +12:00
- Global and app databases
2023-02-03 01:36:25 +13:00
- `minio_data`
2022-06-20 23:48:45 +12:00
- App manifest, budibase client, static assets
2022-06-21 01:18:28 +12:00
### Development Modes
2022-06-20 23:48:45 +12:00
A combination of environment variables controls the mode budibase runs in.
| **NOTE**: You need to clean your browser cookies when you change between different modes.
2022-06-21 01:18:28 +12:00
Yarn commands can be used to mimic the different modes as described in the sections below:
2022-06-20 23:48:45 +12:00
#### Self Hosted
2023-02-03 01:36:25 +13:00
The default mode. A single tenant installation with no usage restrictions.
2022-06-20 23:48:45 +12:00
To enable this mode, use:
2023-02-03 01:36:25 +13:00
2022-06-20 23:48:45 +12:00
```
yarn mode:self
```
#### Cloud
2023-02-03 01:36:25 +13:00
The cloud mode, with account portal turned off.
2022-06-20 23:48:45 +12:00
To enable this mode, use:
2023-02-03 01:36:25 +13:00
2022-06-20 23:48:45 +12:00
```
yarn mode:cloud
```
2023-02-03 01:36:25 +13:00
2022-06-20 23:48:45 +12:00
#### Cloud & Account
2023-02-03 01:36:25 +13:00
The cloud mode, with account portal turned on. This is a replica of the mode that runs at https://budibase.app
2022-06-20 23:48:45 +12:00
To enable this mode, use:
2023-02-03 01:36:25 +13:00
2022-06-20 23:48:45 +12:00
```
yarn mode:account
```
2023-02-03 01:36:25 +13:00
2022-06-20 23:48:45 +12:00
### CI
2023-02-03 01:36:25 +13:00
An overview of the CI pipelines can be found [here](../.github/workflows/README.md)
2022-06-23 21:02:57 +12:00
### Pro
2023-07-21 23:32:23 +12:00
@budibase/pro is the closed source package that supports licensed features in budibase. By default the package will be pulled from NPM and will not normally need to be touched in local development. If you need to make an update to pro and have access to the repo, then you can update your submodule within the mono-repo by running `git submodule update --init` - from here you can use normal submodule flow to develop a change within pro.
Once you have updated to use the pro submodule, it will be linked into all of your local dependencies by NX as with all other monorepo packages. If you have been using the NPM version of `@budibase/pro` then you may need to run a `git reset --hard` to fix all of the pro versions back to `0.0.0` to be monorepo aware.
From here - to develop a change in pro, you can follow the below flow:
2022-06-23 21:02:57 +12:00
```
2023-07-21 23:32:23 +12:00
# enter the pro submodule
cd packages/pro
# get the base branch you are working from (same as monorepo)
git fetch
2023-12-12 03:25:57 +13:00
git checkout master
2023-07-21 23:32:23 +12:00
# create a branch, named the same as the branch in your monorepo
git checkout -b <some branch>
... make changes
# commit the changes you've made, with a message for pro
git commit <something>
# within the monorepo, add the pro reference to your branch, commit it with a message like "Update pro ref"
cd ../..
git add packages/pro
git commit <add the new reference to main repo>
2022-06-23 21:02:57 +12:00
```
2023-07-21 23:32:23 +12:00
From here, you will have created a branch in the pro repository and commited the reference to your branch on the monorepo. When you eventually PR this work back into the mainline branch, you will need to first merge your pro PR to the pro mainline, then go into your PR in the monorepo and update the reference again to the new mainline.
2022-06-23 21:02:57 +12:00
2023-07-21 23:32:23 +12:00
Note that only budibase maintainers will be able to access the pro repo.
2022-06-23 21:02:57 +12:00
2022-06-20 23:48:45 +12:00
### Troubleshooting
2022-06-21 01:18:28 +12:00
Sometimes, things go wrong. This can be due to incompatible updates on the budibase platform. To clear down your development environment and start again follow **Step 6. Cleanup**, then proceed from **Step 3. Install and Build** in the setup guide above to create a fresh Budibase installation.
2023-02-03 01:36:25 +13:00
2022-06-20 23:48:45 +12:00
### Running tests
2023-09-08 01:27:13 +12:00
#### Unit Tests
2022-06-20 23:48:45 +12:00
2023-09-08 01:27:13 +12:00
Budibase uses Jest to run a number of tests. To run the tests execute the following command in the root folder:
2022-06-20 23:48:45 +12:00
```
2023-09-08 01:27:13 +12:00
yarn test
2022-06-20 23:48:45 +12:00
```
### Other Useful Information
2023-02-03 01:36:25 +13:00
- The contributors are listed in [AUTHORS.md](https://github.com/Budibase/budibase/blob/master/.github/AUTHORS.md) (add yourself).
2022-06-20 23:48:45 +12:00
2023-02-03 01:36:25 +13:00
- This project uses a modified version of the MPLv2 license, see [LICENSE](https://github.com/budibase/server/blob/master/LICENSE).
2022-06-20 23:48:45 +12:00
2023-02-03 01:36:25 +13:00
- We use the [C4 (Collective Code Construction Contract)](https://rfc.zeromq.org/spec:42/C4/) process for contributions.
2022-06-20 23:48:45 +12:00
Please read this if you are unfamiliar with it.