-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: init wizard v2 improvements (#19)
* chore: wip * chore: test * chore: test * chore: test * chore: test * chore: wip * chore: test * chore: test * chore: minor tweaks * chore: minor tweaks * chore: minor tweaks * chore: minor tweaks * chore: minor tweaks * chore: minor tweaks * chore: wip reorg examples; refine tests * refactor: refine tests; readme * docs: minor tweaks * chore: minor tweaks * chore: tweaking copier * chore: wip * chore: wip * chore: regen examples * chore: refining preset question * chore: regen artifacts * chore: testing ci * chore: testing ci * chore: testing ci * chore: testing ci * chore: testing ci * chore: refinements * chore: minor refinements * chore: minor tweaks * chore: minor tweaks in copier * chore: regen artifacts * chore: restoring workflow git tweaks * chore: remove zendesk actions * refactor: addressing pr comments * chore: regen artifacts * chore: patching tests * chore: regen artifacts * chore: fix tests * fix: patching brackets for str answer params * chore: refining invocation of base template * chore: regen docs * chore: enforce min version from template side * chore: minor improvements in check_algokit_version script * chore: fixing compatibility issues with pyyaml and 3.12 * chore: temporary reverting to older cli version
- Loading branch information
1 parent
fc1108d
commit 2ccd4cc
Showing
529 changed files
with
9,772 additions
and
1,588 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
name: "\U0001F41C Bug report" | ||
about: Report a reproducible bug. | ||
title: '' | ||
labels: bug | ||
assignees: '' | ||
--- | ||
|
||
### Subject of the issue | ||
|
||
<!-- Describe your issue here. --> | ||
|
||
### Your environment | ||
|
||
<!-- | ||
* Please provide the output of `algokit doctor` command response, | ||
* This will give us a good idea about your environment | ||
--> | ||
|
||
### Steps to reproduce | ||
|
||
1. | ||
2. | ||
|
||
### Expected behaviour | ||
|
||
### Actual behaviour |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
name: "\U0001F514 Feature Request" | ||
about: Suggestions for how we can improve the algorand platform. | ||
title: '' | ||
labels: enhancement | ||
assignees: '' | ||
--- | ||
|
||
## Problem | ||
|
||
<!-- What is the problem that we’re trying to solve? --> | ||
|
||
## Solution | ||
|
||
<!-- Do you have a potential/suggested solution? Document more than one if possible. --> | ||
|
||
### Proposal | ||
|
||
<!-- Describe the solution you’d like in detail. --> | ||
|
||
### Pros and Cons | ||
|
||
<!-- What are the advantages and disadvantages of this solution? --> | ||
|
||
## Dependencies | ||
|
||
<!-- Does the solution have any team or design dependencies? --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,20 +13,20 @@ jobs: | |
uses: ./.github/workflows/check-python.yaml | ||
|
||
tag-release: | ||
runs-on: "ubuntu-latest" | ||
runs-on: 'ubuntu-latest' | ||
needs: ci-check-python | ||
steps: | ||
- name: Checkout source code | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Tag release | ||
id: tag | ||
uses: TriPSs/[email protected] | ||
with: | ||
skip-commit: "true" | ||
tag-prefix: "" | ||
skip-on-empty: "false" | ||
skip-commit: 'true' | ||
tag-prefix: '' | ||
skip-on-empty: 'false' | ||
|
||
- name: Create Release | ||
uses: softprops/action-gh-release@v1 | ||
if: ${{ steps.tag.outputs.skipped == 'false' }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# AlgoKit Official Template for contributors | ||
|
||
This repository is a template for creating new AlgoKit projects. It includes a basic structure for creating a full-stack project. | ||
|
||
## Pre-requisites | ||
|
||
`poetry install` - Install the dependencies for the project. | ||
|
||
## Testing | ||
|
||
```bash | ||
poetry run pytest | ||
``` | ||
|
||
This will regenerate the tests for default `starter` and `production` presets as well as default tests for `generators` available on the template. | ||
|
||
## Development | ||
|
||
```bash | ||
poetry run copier copy . .playground/{some_dummy_folder_name} --vcs-ref=HEAD --trust | ||
``` | ||
|
||
To generate a dummy project into the `.playground` folder. This is useful for testing the template to quickly preview the output of the template before testing via `pytest`. | ||
|
||
## Contributing | ||
|
||
### Commits | ||
|
||
We are using the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/#summary) standard for commit messages. This allows us to automatically generate release notes and version numbers. We do this via [Python Semantic Release](https://python-semantic-release.readthedocs.io/en/latest/) and [GitHub actions](.github/workflows/cd.yaml). | ||
|
||
### Guiding Principles | ||
|
||
AlgoKit development is done within the [AlgoKit Guiding Principles](https://github.com/algorandfoundation/algokit-cli/blob/main/docs/algokit.md#guiding-principles). | ||
|
||
### Pull Requests | ||
|
||
1. Submit a pull request to the `main` branch. Fork the repo if you are an external contributor. | ||
2. Ensure that the pull request is up to date with the `main` branch. | ||
3. Ensure that the pull request has a clear title and description. | ||
4. Pass PR reviews and wait for approval. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.