Skip to content

Getting the Source

ELO edited this page May 20, 2024 · 3 revisions

Getting the Source Code

Steppable is hosted on GitHub. You may clone the repository to get the source code.

$ git clone https://github.com/ZCG-coder/Steppable.git
Cloning into Steppable
...

You may also work on the cloud using GitHub Codespaces.

Open in GitHub Codespaces

Branches

The development work of Steppable is done in the develop branch. It is not recommended to use the develop branch for production, but nevertheless it is a good place to see the latest features and bug fixes.

The main branch is the stable branch. It is recommended to use this branch for production. Currently, except for merging from develop and some small changes, no new features are added to this branch.

You can easily switch between branches by using the git checkout command.

$ git checkout develop
Switched to branch 'develop'
Your branch is up to date with 'origin/develop'.

or switch back to the main branch:

$ git checkout main
Switched to branch 'main'
Your branch is up to date with 'origin/main'.

Contents

Introduction

Contributing

Building

Development

API Documentation

Others

  • Performance - Some benchmarks of Steppable for reference
  • Status - Status of Steppable, at a glance
Clone this wiki locally