You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+48-12Lines changed: 48 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,29 +11,65 @@ There are a few major changes between this version and the original version.
11
11
2. There is an entirely _new_ generator command that is much more flexable than the previous generation. Please read the docs to better understand how to utilize this.
12
12
13
13
14
+
15
+
14
16
## Installation
15
17
16
-
1. Add the dependency to your `shard.yml`:
17
18
18
-
```yaml
19
-
dependencies:
20
-
amber_cli:
21
-
github: amberframework/amber_cli
22
-
```
19
+
MacOS & Linux via Homebrew:
20
+
21
+
`brew install amber`
22
+
23
+
From source:
23
24
24
-
2. Run `shards install`
25
+
1. Clone the repo from the latest release tag `git clone git@
26
+
2. Install the dependencies `shards install`
27
+
3. Build the binary `crystal build src/amber_cli.cr -o amber`
28
+
4. (Optional) Build the MCP server `crystal build src/amber_mcp`
25
29
26
-
## Usage
27
30
28
-
```crystal
29
-
require "amber_cli"
30
-
```
31
+
Windows:
32
+
33
+
Not directly supported at this time. This CLI tool should work as expected when using a virtual machine or WSL2.
34
+
31
35
32
36
TODO: Write usage instructions here
33
37
34
38
## Development
35
39
36
-
TODO: Write development instructions here
40
+
To get started with development:
41
+
42
+
1.**Install Crystal**: Make sure you have Crystal installed (version 1.0+ recommended)
43
+
- macOS: `brew install crystal`
44
+
- Ubuntu/Debian: Follow the [Crystal installation guide](https://crystal-lang.org/install/)
0 commit comments