@ametyst/cli 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +36 -0
- package/ametyst.node +0 -0
- package/dist/index.js +113898 -0
- package/index.d.ts +9 -0
- package/native/Cargo.lock +1123 -0
- package/native/Cargo.toml +25 -0
- package/native/ametyst-vault.node +0 -0
- package/native/build.rs +4 -0
- package/native/index.d.ts +9 -0
- package/native/package.json +9 -0
- package/native/src/.gitkeep +1 -0
- package/native/src/lib.rs +229 -0
- package/package.json +76 -0
package/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# <repo-name>
|
|
2
|
+
|
|
3
|
+
> One-sentence summary of what this repo is. Example: "Credential service — handles auth, sessions, JWT issuance, and key management for Ametyst."
|
|
4
|
+
|
|
5
|
+
## What this repo does
|
|
6
|
+
- Bullet 1 — primary responsibility
|
|
7
|
+
- Bullet 2 — secondary responsibility
|
|
8
|
+
- Bullet 3 — secondary responsibility
|
|
9
|
+
|
|
10
|
+
Stop here. Design decisions go in [ARCHITECTURE.md](ARCHITECTURE.md).
|
|
11
|
+
|
|
12
|
+
## Quickstart (local)
|
|
13
|
+
```bash
|
|
14
|
+
gh repo clone ametyst-dev/<repo-name>
|
|
15
|
+
cd <repo-name>
|
|
16
|
+
pnpm install
|
|
17
|
+
cp .env.example .env.local # then fill values (ask in #product Slack if missing)
|
|
18
|
+
docker compose up -d # if this repo needs a local DB/Redis
|
|
19
|
+
pnpm dev
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
App runs on `http://localhost:<port>`.
|
|
23
|
+
|
|
24
|
+
## Docs
|
|
25
|
+
- [ARCHITECTURE.md](ARCHITECTURE.md) — how the code is organized
|
|
26
|
+
- [INFRA.md](INFRA.md) — how it gets deployed
|
|
27
|
+
- [CONTRIBUTING.md](CONTRIBUTING.md) — how to develop and contribute
|
|
28
|
+
- [CHANGELOG.md](CHANGELOG.md) — release notes
|
|
29
|
+
|
|
30
|
+
## Related repos
|
|
31
|
+
- `@ametyst-dev/sdk` — shared types and client
|
|
32
|
+
- `<other dependencies>`
|
|
33
|
+
|
|
34
|
+
## Owners
|
|
35
|
+
- @<github-handle> (DRI)
|
|
36
|
+
- @<github-handle> (backup)
|
package/ametyst.node
ADDED
|
Binary file
|