Requirements

You need to install the following tools on your machine:

Install NextReady

Get a secret key by verifying your license key after purchasing it. Download the key and save it at the root of your project. And, update the permissions of the file:

bash

chmod 600 ./XXX-XXXX-XXXX-XX.pem

Then, clone the repository:

bash

GIT_SSH_COMMAND="ssh -i ./XXX-XXXX-XXXX-XX.pem" \ git clone -o nextready --depth 1 --single-branch \ [email protected]:nextready/nextready.git \ MY_APP

Change MY_APP with your project name. Then, change the directory and install the dependencies:

bash

cd MY_APP && \ bun install

Add Your Repository

You can sync it with your own repository. After creating a new repository, add it as the origin:

bash

git remote add origin <your-repo-url>

Then, commit your changes and push them to your repository:

bash

git push -u origin main