Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Fix readme for app-registry #83

Merged
merged 1 commit into from
Apr 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 7 additions & 15 deletions _ignite-app-registry/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,23 +21,17 @@ Below is the template for the `app.json` file. Replace each placeholder with the
{
"appName": "Your App Name",
"appDescription": "A brief description of what your app does.",
"latestRelease": {
"version": "x.y.z",
"date": "YYYY-MM-DD",
"releaseNotesUrl": "URL to the release notes or changelog"
},
"igniteCompatibility": {
"lastTestedVersion": "ignite vX.Y.Z"
},
"cosmosSdkCompatibility": {
"lastWorkedVersion": "vX.Y.Z"
"ignite": ">28.3.0",
"dependencies": {
"docker": ">23.0.5"
},
"cosmosSDK": ">0.50.4",
"features": [
"Feature 1",
"Feature 2",
"Additional features..."
],
"wasm": "Indicate if your app uses wasm (yes/no)",
"wasm": false,
"authors": [
{
"name": "Author Name",
Expand All @@ -46,8 +40,7 @@ Below is the template for the `app.json` file. Replace each placeholder with the
}
],
"repository": {
"url": "URL to the app's repository",
"type": "e.g., GitHub, GitLab"
"url": "URL to the app's repository"
},
"documentationUrl": "URL to the app's documentation",
"license": {
Expand All @@ -61,7 +54,7 @@ Below is the template for the `app.json` file. Replace each placeholder with the
"telegram": "Optional Telegram group",
"discord": "Optional Discord server",
"reddit": "Optional Reddit page",
"website": "Optional website page"
"website": ""
},
"donations": {
"cryptoAddresses": {
Expand All @@ -71,7 +64,6 @@ Below is the template for the `app.json` file. Replace each placeholder with the
"fiatDonationLinks": "URL to Patreon, Ko-fi, etc."
}
}

```

## **Best Practices**
Expand Down
Loading