@@ -21,17 +21,20 @@ TODO Instructions
21
21
TODO Instructions
22
22
23
23
## Homebrew
24
- # apidash Homebrew Formula Submission
25
24
26
- ## 1. Prepare Tap Repository
25
+ Homebrew Formula Submission
26
+
27
+ ### 1. Prepare Tap Repository
28
+
27
29
```
28
30
# Create Homebrew tap
29
31
gh repo create homebrew-tap --public --clone
30
32
mkdir -p homebrew-tap/Formula
31
33
cd homebrew-tap
32
34
```
33
35
34
- ## 2. Package apidash
36
+ ### 2. Package apidash
37
+
35
38
```
36
39
# Build macOS bundle
37
40
flutter build macos
@@ -45,8 +48,10 @@ tar -czvf apidash-v1.0.0.tar.gz \
45
48
shasum -a 256 apidash-v1.0.0.tar.gz
46
49
```
47
50
48
- ## 3. Create Formula File
51
+ ### 3. Create Formula File
52
+
49
53
` Formula/apidash.rb ` :
54
+
50
55
```
51
56
class Apidash < Formula
52
57
desc "Modern API dashboard for developers"
@@ -65,7 +70,8 @@ class Apidash < Formula
65
70
end
66
71
```
67
72
68
- ## 4. Local Validation
73
+ ### 4. Local Validation
74
+
69
75
```
70
76
# Check formula syntax
71
77
brew audit --strict Formula/apidash.rb
@@ -76,7 +82,9 @@ brew install --build-from-source Formula/apidash.rb
76
82
# Verify execution
77
83
brew test apidash
78
84
```
79
- ## 5. Custom Tap Submission
85
+
86
+ ### 5. Custom Tap Submission
87
+
80
88
```
81
89
# Commit formula to your tap repo
82
90
git add Formula/Apidash.rb
@@ -86,11 +94,12 @@ git push
86
94
# Create release for tarball
87
95
gh release create v1.0.0 apidash-v1.0.0.tar.gz
88
96
```
89
- ## 6. Installation
97
+
98
+ ### 6. Installation
99
+
90
100
```
91
101
brew tap homebrew-tap/Formula
92
102
brew install apidash
93
-
94
103
```
95
104
96
105
## Chocolatey
0 commit comments