First off, thank you for considering contributing to Botpress
Following these guidelines helps to communicate that you respect the time of the developers managing and developing this open source project. In return, they should reciprocate that respect in addressing your issue, assessing changes, and helping you finalize your pull requests.
Botpress is an open source project and we welcome any contributions from our community! There are more ways to contribute that just fixing bugs and writing features - improving the documentation, submitting bug reports and writing tutorials are all great contributions and will be welcomed as much as any other.
However as a reminder we do have a Slack channel and a website so please use these as places to find support rather than using the issue tracker which should be reserved for feature requests and bug reports.
As contributors you should be respectful and considerate of others - both contributors and non-contributors alike. Please refer to the code of conduct for our and your responsibilities to the rest of the community.
-
Ensure contributions are unit tested and that all tests pass before submitting any pull-request
Before you run the tests, you need a PostgreSQL server running on your machine. If you have Docker installed, you can run the following at the command prompt, to automatically download and start a PostgreSQL server. You don't need to understand or install PostgreSQL Server yourself.
To run local PostgreSQL server at the command prompt.
# MacOS docker run -p 5432:5432 -e POSTGRES_USER=$USER postgres # Windows PowerShell docker run -p 5432:5432 -e POSTGRES_USER=$env:UserName postgres
note:
- Press
CTRL-c
to stop it.
To run the tests run at the command prompt.
npm run test
- Press
-
Ensure that the code lints cleanly
To lint the code run at the command prompt.
npm run lint
-
If you do find any issues or think of a feature please create a Github issue for this first. Discuss things transparently and get community feedback.
If you're not sure where to start issues we've labelled some issues with #for-new-contributors so these are a great place to start!
There's an #introduce-yourself channel on our Slack channel so maybe 👋 here and get settled in! We might even 👋 back!
Start by checking out the README and check out the introductory videos and get familiar with what Botpress does.
If you do decide to work on an issue comment saying you intend to pick it up and we'll assign it to you. If you decide it's too much however do tell us and we can try to help out or unassign it so it's free for someone else to pick up.
Working on your first Pull Request? You can learn how from this free series, How to Contribute to an Open Source Project on GitHub.
At this point, you're ready to make your changes! Feel free to ask for help; everyone is a beginner at first 😸
If a maintainer asks you to "rebase" your PR, they're saying that a lot of code has changed, and that you need to update your branch so it's easier to merge. Git can be confusing at times, but essentially this means the project history ends up being cleaner - there's an overview of why we might ask you to rebase here.
Contributions to Botpress will be dual-licensed under AGPLv3 and the Botpress Proprietary License. This means that all contributors need to agree to the dual-license before their contributions can be accepted. This is an automatic process when creating the pull-request.
When filing an issue, make sure to answer these five questions:
- What version of Botpress are you using?
- What did you do?
- What did you expect to see?
- What did you see instead?
- Any extra detail that might be useful (platform, node version, plugins etc)
If you find yourself wishing for a feature that doesn't exist in Botpress, you are probably not alone. There are bound to be others out there with similar needs. Many of the features that Botpress has today have been added because our users saw the need. Open an issue on our issues list on GitHub which describes the feature you would like to see, why you need it, and how it should work.
However as Botpress has a great module system consider whether the feature you're requesting would be better as a module, rather than expanding the core platform.
Try to keep the commit message short. Use the notes section if there is any extra detail you want to convey, and keep commits and pull-requests as focussed as possible.
Pull requests are reviewed as and when the maintainers have the time, however we may have feedback. Try not to take this as a personal criticism but just an attempt to maintain the quality of the project.
The maintainers can be found on Slack and will try to reply to most messages.
If you are interested in contributing to Botpress, you will need to create a local development environment. These instructions were tested on OSX using iTerm for CLI.
These instructions assume a parent directory bar
and we will be adding two child directories: botpress
and foobot
.
- Fork the botpress repo & copy the link. (If you are new to open source, GitHub, or Git, check out the excellent egghead.io link in 'New to contributing to open-source?' for additional important Git commands, such as checking out a branch, setting your upstream repo, keeping your local copy in sync, and making your pull request).
- Open a new terminal/CLI tab, and run commands
# botpress terminal window # create and navigate to the `bar` directory $ mkdir bar && cd bar # Clone the forked repo locally bar $ git clone https://github.com/YOURNAME/botpress.git # Navigate into your local botpress folder bar $ cd botpress
- Determine if you are going to use
yarn
(recommended) ornpm
for package management
Yarn (recommended)
- Continue running commands in the botpress terminal window
# Install the dependencies bar/botpress $ yarn install # Compile and run the botpress server bar/botpress $ yarn run watch
- Open a new terminal/CLI tab (foobot), and run commands
# navigate to the botpress botpress directory $ cd bar/botpress # link botpress bar/botpress $ yarn link # navigate to bar bar/botpress $ cd ./.. # create the foobot our test bot bar $ node ./botpress/bin/botpress init foobot # enter the project information at the prompts # navigate into the foobot directory bar $ cd foobot # link foobot to our local copy of botpress bar/foobot $ yarn link botpress # start the bot normally bar/foobot $ bp start
NPM
- Continue running commands in the botpress terminal window
# Install the dependencies bar/botpress $ npm install # Compile and run the botpress server bar/botpress $ npm run watch
- Open a new terminal/CLI tab (foobot), and run commands
# navigate to the botpress botpress directory $ cd bar/botpress # link botpress bar/botpress $ yarn link # navigate to bar bar/botpress $ cd ./.. # create the foobot our test bot bar $ node ./botpress/bin/botpress init foobot # enter the project information at the prompts # navigate into the foobot directory bar $ cd foobot # link foobot to our local copy of botpress bar/foobot $ npm link botpress # start the bot normally bar/foobot $ bp start
Next Steps
- You will note that if you want to access the CLI while
botpress
andfoobot
are running, you will need to open a third tab. - If you want to confirm that your local copy is working, a straightforward method is to make a change to botpress's React code on your local copy, restart both botpress and foobot
- edit code in botpress
- in: botpress terminal window
# Ctl-C to end watch # start botpress using yarn or npm bar/botpress $ yarn run watch
- in: foobot terminal window
# Ctl-C to stop bot bar/foobot $ bp start
- visit
localhost:3000
in a browser to confirm your change was implemented