Skip to content

Installation steps

Open your terminal and navigate to your desired project directory. Follow the steps below:

Clone the Repository using Git

Using ssh

Terminal window
git clone git@github.com:AppLaunchKit/AppLaunchKit.git your-app-name

Using https

Terminal window
git clone https://github.com/AppLaunchKit/AppLaunchKit.git your-app-name

Remove git origin

Run the following command in your terminal:

Terminal window
git remote remove origin

Add new git origin

Run the following command in your terminal:

Terminal window
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…)