LaunchPad is an open-source, free-to-use project designed to empower you to bring your Kotlin Multiplatform projects to market faster. It provides a collection of tools and utilities to streamline your development process and eliminate the need for reinventing the wheel.
With LaunchPad AI, you can:
- TBA
- TBA
We encourage contributions from all developers! Refer to the CONTRIBUTING.md
for details.
Add the following dependency to your build.gradle.kts:
commonMain.dependencies {
...
implementation("com.github.bottlerocketstudios:kmp-launchpad-ai:<version>")
}
-
Open your web browser and navigate to GitHub. Log in with your GitHub credentials.
- Click on your profile picture in the top-right corner.
- Select "Settings" from the dropdown menu.
- In the left sidebar, click on "Developer settings."
- In the "Access tokens" section, click on "Generate token."
- Provide a suitable name for your token.
- Select the scopes (permissions) needed for your use case. For general use, "repo" and "read:user" are often sufficient.
- Click "Generate token."
- After generating the token, copy it to your clipboard immediately.
- Note: This token is displayed only once. Ensure you securely store it.
Now that you have generated your PAT, you'll need to configure it on your local machine.
- Open the terminal or command prompt on your computer.
- Run the following commands, replacing YOUR_TOKEN_HERE with the actual token you copied:
export REPO_READ_WRITE_USER=YOUR_TOKEN_HERE
export [email protected]
Alternatively, you can add these lines to your shell profile file (e.g., .bashrc, .zshrc, or .bash_profile) to make them persistent.
- To verify that your environment variables are set correctly, you can echo them in the terminal:
echo REPO_READ_WRITE_USER
echo REPO_READ_WRITE_TOKEN
You should see the values you set.