Installation steps
Open your terminal and navigate to your desired project directory. Follow the steps below:
Clone the Repository using Git
Using ssh
git clone git@github.com:AppLaunchKit/AppLaunchKit.git your-app-name
Using https
git clone https://github.com/AppLaunchKit/AppLaunchKit.git your-app-name
Remove git origin
Run the following command in your terminal:
git remote remove origin
Add new git origin
Run the following command in your terminal:
git remote set-url origin {your-git-origin}
Install dependencies
-
Navigate to
<your-app-name>
directory. -
You can use these package managers to install the dependencies.
-
npm
Terminal window npm install -
bun
Terminal window bun install -
yarn and pnpm (coming soon…)
-