⏱
4 mins remaining
Atmosphere Pro
Learn how to setup your development environment to contribute to Atmosphere Pro
Steps in this module
Forking the Repository
Now, it is time to fork the atmosphere
Make sure you are logged into GitHub
Head over to atmosphere_pro and click “Fork”.
- 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.
- 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.
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.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.
Tada! You’ve cloned the repository. Just run
flutter pub get
to get the packages the atmosphere pro relies on.Then do
flutter run
in the root project directory.