Skip to content

Commit

Permalink
Merge pull request #183 from AtomiCloud/pikachu
Browse files Browse the repository at this point in the history
Pikachu
  • Loading branch information
kirinnee authored Dec 31, 2024
2 parents 418bee2 + 2ed1caa commit 24515d2
Show file tree
Hide file tree
Showing 85 changed files with 1,382 additions and 1,140 deletions.
2 changes: 1 addition & 1 deletion .envrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
nix_direnv_watch_file "./nix/env.nix" "./nix/fmt.nix" "./nix/packages.nix" "./nix/shells.nix" "./nix/pre-commit.nix" "./flake.nix" "./parse.nix"
watch_file "./nix/env.nix" "./nix/fmt.nix" "./nix/packages.nix" "./nix/shells.nix" "./nix/pre-commit.nix" "./flake.nix" "./parse.nix"
use flake
pls setup
5 changes: 5 additions & 0 deletions .infisical.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"workspaceId": "18cef1a6-813c-407a-8e21-2e052adf1802",
"defaultEnvironment": "lapras",
"gitBranchToEnvironmentMapping": null
}
8 changes: 8 additions & 0 deletions .prettierrc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
tabWidth: 2
semi: true
singleQuote: true
bracketSpacing: true
trailingComma: all
arrowParens: avoid
printWidth: 120
singleAttributePerLine: false
5 changes: 3 additions & 2 deletions Taskfile.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "3"
version: '3'

vars:
API: http://127.0.0.1:9001
Expand All @@ -14,6 +14,7 @@ tasks:
desc: Setups
cmds:
- bun i
- ./scripts/local/secrets.sh

add:
desc: Add Component
Expand Down Expand Up @@ -48,6 +49,6 @@ tasks:
sdk-gen:
desc: Generate SDK from Swagger
env:
API_URL: "{{.API}}"
API_URL: '{{.API}}'
cmds:
- ./scripts/local/sdk_gen.sh v1
26 changes: 13 additions & 13 deletions atomi_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,40 +22,40 @@ specialScopes:
release: false

plugins:
- module: "@semantic-release/changelog"
- module: '@semantic-release/changelog'
config:
changelogFile: Changelog.md
- module: "@semantic-release/git"
- module: '@semantic-release/git'
config:
message: "release: ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
assets:
- Changelog.md
- CommitConventions.md
- module: "@semantic-release/github"
- module: '@semantic-release/github'

# Angular Conventional Commit Example: https://github.com/angular/angular/blob/22b96b9/CONTRIBUTING.md#-commit-message-guidelines
types:
- type: dep
section: ⬆️ Dependencies ⬆️
desc: "Update dependencies from upstream"
desc: 'Update dependencies from upstream'
scopes:
default:
desc: Update dependencies
release: minor
- type: build
desc: "Changes that affect the build system or external dependencies (example scopes: nix)"
desc: 'Changes that affect the build system or external dependencies (example scopes: nix)'
scopes:
default:
desc: Fixes in nix
release: false
- type: config
desc: "Changes to the configuration files (example scopes: nix, ci)"
desc: 'Changes to the configuration files (example scopes: nix, ci)'
scopes:
default:
desc: Update configuration files
release: false
- type: ci
desc: "Changes to our CI configuration files and scripts (example scopes: github_workflow, github_action)"
desc: 'Changes to our CI configuration files and scripts (example scopes: github_workflow, github_action)'
scopes:
default:
desc: Update CI configuration
Expand All @@ -73,7 +73,7 @@ types:
vae:
verb: add
application: <scope>, <title>
example: "feat: new withdraw api for rapid"
example: 'feat: new withdraw api for rapid'
scopes:
default:
desc: Release a new features
Expand All @@ -84,7 +84,7 @@ types:
vae:
verb: fix
application: <title>
example: "fix: deposit api for rapid"
example: 'fix: deposit api for rapid'
scopes:
default:
desc: Generic fixes
Expand All @@ -95,7 +95,7 @@ types:
vae:
verb: improve
application: <title>
example: "perf: alpaca api callback speed increase"
example: 'perf: alpaca api callback speed increase'
scopes:
default:
desc: Generic improvement statement
Expand All @@ -105,7 +105,7 @@ types:
vae:
verb: refactor
application: <scope>, <title>
example: "refactor: make withdrawal code more reusable"
example: 'refactor: make withdrawal code more reusable'
scopes:
default:
desc: Refactor existing feature
Expand All @@ -115,7 +115,7 @@ types:
vae:
verb: style
application: <title>
example: "style: add missing semi colon"
example: 'style: add missing semi colon'
scopes:
default:
desc: Generic improvement statement
Expand All @@ -126,7 +126,7 @@ types:
vae:
verb: test
application: <scope>, <title>
example: "test: update test for deposit api"
example: 'test: update test for deposit api'
scopes:
default:
desc: Made changes to test
Expand Down
Binary file modified bun.lockb
Binary file not shown.
Loading

0 comments on commit 24515d2

Please sign in to comment.