Skip to content

Commit

Permalink
edits
Browse files Browse the repository at this point in the history
  • Loading branch information
oiclid committed Aug 30, 2024
1 parent 1f1d8b9 commit a32a8e8
Show file tree
Hide file tree
Showing 10 changed files with 444 additions and 1,047 deletions.
960 changes: 178 additions & 782 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@
"prettier-plugin-astro": "^0.12.0",
"prettier-plugin-tailwindcss": "^0.5.4"
}
}
}
15 changes: 15 additions & 0 deletions src/content/Docs/_sequence.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ export const docsSequence = [
{ label: "Llama-2 70B"},
{ label: "Akash Chat API"},
{ label: "AI Art"},
{ label: "Jupyter Notebook"},
{label: "Text-Generation-WebUI"},
],
},
Expand Down Expand Up @@ -118,6 +119,20 @@ export const docsSequence = [
subItems: [
{ label: "Waku"},
{ label: "qBittorrent"},
{ label: "Discourse"},
],
},
{
label: "Databases",
subItems: [
{ label: "PostgreSQL restore/backup"},

],
},
{
label: "Data Visualizations",
subItems: [
{ label: "Redash"},
],
},

Expand Down
25 changes: 25 additions & 0 deletions src/content/Docs/guides/apps/discourse/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
categories: ["Guides"]
tags: ["Social"]
weight: 1
title: "Discourse on Akash"
linkTitle: "Discourse"
---

Discourse is a fully open-source discussion platform designed for the future of the Internet. It can be used as a mailing list, discussion forum, long-form chat room, and more. To learn more, visit [Discourse](https://www.discourse.org/).

## Discourse on Akash Overview

This guide will help you deploy a multi-tiered Discourse application on the Akash Network, consisting of four services/containers:

- Backend Services:
- PostgreSQL
- Redis
- Sidekiq (for background job processing)

- Frontend Service:
- Discourse

To deploy your Discourse instance on the Akash Network, simply use the provided [`deploy.yml`](https://github.com/akash-network/awesome-akash/blob/master/discourse/deploy.yml) script on Mainnet. You can refer to any "Step by Step Guide to Akash" for detailed instructions.

A
38 changes: 38 additions & 0 deletions src/content/Docs/guides/databases/redash/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
categories: ["Guides"]
tags: ["Blockchain"]
weight: 1
title: "Redash"
linkTitle: "Redash"
---


[Redash](https://redash.io/) is an open-source tool designed for data visualization and dashboard creation. It enables users to connect to various data sources, craft interactive dashboards, and generate visualizations for data analysis. With its intuitive interface, Redash allows users to query, visualize, and share data insights across an organization. Businesses can leverage Redash to create reports, charts, graphs, and dashboards, facilitating data-driven decision-making.

## Akash Console Deployment Setup

The provided [`deploy.yaml`](https://github.com/akash-network/awesome-akash/blob/master/Redash/deploy.yaml) file utilizes [IP leases](/docs/network-features/ip-leases) and [persistent storage](https://akash.network/docs/network-features/persistent-storage). If you are not receiving bids, consider removing one or both of these features.

Once deployed, access the deployment shell, select "redash," and execute the following commands in sequence:

```
bin/docker-entrypoint create_db
bin/docker-entrypoint server
```

- `create_db`: Initializes the necessary database schema for Redash.
- `server`: Launches the Redash web server, making the application accessible upon completion.

Expected outputs from these commands are provided below.

## Service Overview

- `redash/redash:10.0.0.b50363`: This image is used across several services, each explained below:

- `redash`: The core web server for Redash, delivering the web application to users, managing interactions, and executing SQL queries.
- `scheduler`: Manages scheduled tasks within Redash, ensuring background jobs run at predefined intervals.
- `scheduled_worker`: Executes worker processes for scheduled queries and schema-related tasks.
- `adhoc_worker`: Handles worker processes specifically for ad-hoc queries.
- `worker`: A general-purpose worker process for various tasks.

This file was deleted.

This file was deleted.

Loading

0 comments on commit a32a8e8

Please sign in to comment.