Skip to content

Commit 6329f33

Browse files
authored
feat: init wizard v2 improvements (#5)
* chore: wip * chore: test * chore: aligning names for launch configs * chore: removing orchestrator changes * chore: minor tweaks * refactor: restructure and simplify tests * chore: minor tweaks * chore: minor tweaks * chore: using algokit from preview branch * chore: refining preset question * chore: minor tweaks * chore: minor tweaks * chore: minor tweaks in copier * chore: remove zendesk actions * refactor: addressing pr comments * chore: patching ci * chore: merge conflicts * chore: patching copier conditional for jest/pytest * chore: minor polishing; adding code tours * chore: refining ci dependencies
1 parent 9230397 commit 6329f33

File tree

249 files changed

+2762
-399
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

249 files changed

+2762
-399
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
name: "\U0001F41C Bug report"
3+
about: Report a reproducible bug.
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
---
8+
9+
### Subject of the issue
10+
11+
<!-- Describe your issue here. -->
12+
13+
### Your environment
14+
15+
<!--
16+
* Please provide the output of `algokit doctor` command response,
17+
* This will give us a good idea about your environment
18+
-->
19+
20+
### Steps to reproduce
21+
22+
1.
23+
2.
24+
25+
### Expected behaviour
26+
27+
### Actual behaviour
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
name: "\U0001F514 Feature Request"
3+
about: Suggestions for how we can improve the algorand platform.
4+
title: ''
5+
labels: enhancement
6+
assignees: ''
7+
---
8+
9+
## Problem
10+
11+
<!-- What is the problem that we’re trying to solve? -->
12+
13+
## Solution
14+
15+
<!-- Do you have a potential/suggested solution? Document more than one if possible. -->
16+
17+
### Proposal
18+
19+
<!-- Describe the solution you’d like in detail. -->
20+
21+
### Pros and Cons
22+
23+
<!-- What are the advantages and disadvantages of this solution? -->
24+
25+
## Dependencies
26+
27+
<!-- Does the solution have any team or design dependencies? -->

.github/workflows/cd.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
needs: ci-check-python
1818
steps:
1919
- name: Checkout source code
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121

2222
- name: Tag release
2323
id: tag
@@ -26,7 +26,7 @@ jobs:
2626
skip-commit: "true"
2727
tag-prefix: ""
2828
skip-on-empty: "false"
29-
29+
3030
- name: Create Release
3131
uses: softprops/action-gh-release@v1
3232
if: ${{ steps.tag.outputs.skipped == 'false' }}

.github/workflows/check-python.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ jobs:
88
runs-on: "ubuntu-latest"
99
steps:
1010
- name: Checkout source code
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@v4
1212

1313
- name: Install poetry
1414
run: pipx install poetry
1515

1616
- name: Install algokit
17-
run: pipx install algokit
17+
run: pipx install git+https://github.com/algorandfoundation/algokit-cli@feat/init_wizard_v2 --force
1818

1919
- name: Set up Python 3.12
20-
uses: actions/setup-python@v4
20+
uses: actions/setup-python@v5
2121
with:
2222
python-version: "3.12"
2323
cache: "poetry"
@@ -51,6 +51,6 @@ jobs:
5151
shell: bash
5252
run: |
5353
# Add untracked files as empty so they come up in diff
54-
git add -N ./tests_generated
54+
git add -N ./examples
5555
# Look for changes in generated templates and error if there are any
56-
git diff --exit-code --minimal ./tests_generated
56+
git diff --exit-code --minimal ./examples

.github/workflows/issue_closed.yml

Lines changed: 0 additions & 12 deletions
This file was deleted.

.github/workflows/issue_commented.yml

Lines changed: 0 additions & 12 deletions
This file was deleted.

.github/workflows/issue_labelled.yml

Lines changed: 0 additions & 12 deletions
This file was deleted.

.github/workflows/zendesk_github_add_comment.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/workflows/zendesk_github_close_issue.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,3 +169,11 @@ cython_debug/
169169

170170
# NPM
171171
node_modules
172+
173+
# Ignore lockfiles in all directories and subdirectories under examples, recursively
174+
examples/**/package-lock.json
175+
examples/**/poetry.lock
176+
177+
# playground folder for previewing templates
178+
.playground/*
179+
!.playground/.gitkeep

0 commit comments

Comments
 (0)