Thank you for your interest in this project! Please contribute according to the following guidelines:
Please note we have a code of conduct, please follow it in all your interactions with the project.
To set up a development environment, please follow these steps:
-
Clone the repo
git clone https://github.com/liam-hq/liam
-
Install npm package
corepack enable corepack prepare pnpm install
-
Development
pnpm dev
-
Open apps
package url @liam-hq/erd-web http://localhost:3001 @liam-hq/cli http://localhost:5173 @liam-hq/docs http://localhost:3002
You've found a bug in the source code, a mistake in the documentation or maybe you'd like a new feature? Take a look at GitHub Discussions to see if it's already being discussed. You can help us by submitting an issue on GitHub. Before you create an issue, make sure to search the issue archive -- your issue may have already been addressed!
Please try to create bug reports that are:
- Reproducible. Include steps to reproduce the problem.
- Specific. Include as much detail as possible: which version, what environment, etc.
- Unique. Do not duplicate existing opened issues.
- Scoped to a Single Bug. One bug per report.
Even better: Submit a pull request with a fix or new feature!
- Search our repository for open or closed Pull Requests that relate to your submission. You don't want to duplicate effort.
- Fork the project
- Create your feature branch (
git switch -c feat/amazing_feature
) - Write a clear and concise changeset description
- If your changes include modifications to any packages within the
frontend/packages
directory:- Use
pnpm changeset
at the top level of this project. - Always select the @liam-hq/cli package, in addition to any other modified packages.
- Use
- Write a clear and concise commit message using the emoji (e.g., ✨) itself, not the textual representation (e.g.,
:sparkles:
). A list of supported gitmojis can be found here. Examples:- ✨ Added a new feature to filter tables
- 🐛 Fixed a typo in the welcome message
- 📝 Updated README.md with new installation instructions
- If your changes include modifications to any packages within the
- Commit your changes (
git commit -m 'feat: add amazing_feature'
) - Push to the branch (
git push origin feat/amazing_feature
) - Open a Pull Request