⏱ 4 mins remaining

Atmosphere Pro

Learn how to setup your development environment to contribute to Atmosphere Pro

Forking the Repository

Now, it is time to fork the atmosphere

  1. Make sure you are logged into GitHub

  2. Head over to atmosphere_pro and click “Fork”.


  1. You should be given prompted to create a new repository on your account. Change these settings to your needs. Change the repository name, description, or copy all of the branches if you’d like. We recommend the default settings.


  1. Now that you have the repository on your own personal GitHub account, you can get the GitHub url by clicking on “Code,” clicking “HTTPS,” then copy the url.


  1. On your local machine, cd into the directory where you want to clone the repository. This can be done either on your terminal or on the terminal in your code editor.

  2. Now that you are in the right directory, run the following command:

git clone <YOUR_FORKED_REPOSITORY_URL> .

<YOUR_FORKED_REPOSITORY_URL> is the URL you copied from step 4.

  1. Tada! You’ve cloned the repository. Just run flutter pub get to get the packages the atmosphere pro relies on.

  2. Then do flutter run in the root project directory.