Installation
Learn how to clone the repository and install the boilerplate.
Make sure you have read and followed the instructions on requirements before proceeding.
Instructions
Clone the repository
Once you've gained access to the repository after purchasing AI Boilerplate, clone it:
git clone https://github.com/aiboilerplate/aiboilerplate.gitgit clone git@github.com:aiboilerplate/aiboilerplate.gitUpdate the remote
In order to receive future updates from the boilerplate repository, update the remote:
git remote rm origin
git remote add upstream https://github.com/aiboilerplate/aiboilerplate.gitgit remote rm origin
git remote add upstream git@github.com:aiboilerplate/aiboilerplate.gitCreate your own repository on GitHub and add it as the origin:
git remote add origin https://github.com/your-username/your-repository-name.gitgit remote add origin git@github.com:your-username/your-repository-name.gitNow you have two remotes: origin (your repository) and upstream (the boilerplate repository).
You can pull the latest changes from the boilerplate repository using the following command:
git pull upstream mainInstall dependencies
pnpm installThis also sets up Husky, which runs pre-commit hooks to enforce code quality with ESLint and Prettier.