Spaces:
Build error
Build error
A newer version of the Streamlit SDK is available:
1.40.1
Fork the repository by clicking on the
Fork
button on the repository's page. This creates a copy of the code under your GitHub user account.Clone your fork to your local disk, and add the base repository as a remote.
$ git clone git@github.com:<your-GitHub-username>/chef-transformer.git
$ cd chef-transformer
$ git remote add upstream https://github.com/chef-transformer/chef-transformer.git
- Create a new branch to hold your development changes.
$ git checkout -b a-descriptive-name-for-your-changes
NOTE: Do not work on the
main
branch.
- Set up a development environment by running the following command in a virtual environment.
$ pip install -r requirements.txt
DEVELOP THE CODE
It is a good idea to sync your copy of the code with the original repository regularly. This way you can quickly account for changes.
$ git fetch upstream
$ git rebase upstream/main
- Push the changes to your account using:
$ git push -u origin a-descriptive-name-for-your-changes
- Once you are satisfied (and the checklist above is happy too), go to the webpage of your fork on GitHub. Click on
Pull Request
to send your changes to the project maintainers for review.