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.

  • Navigate to backend/express-js

    • You can use these package managers to install the dependencies.

      npm
      Terminal window
      npm install
      yarn
      Terminal window
      yarn install
      pnpm
      Terminal window
      pnpm install
      bun
      Terminal window
      bun install
  • Navigate back to <your-app-name> directory, then navigate to frontend/

    • 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…)