-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,12 +15,28 @@ | |
|
||
</div> | ||
|
||
- [Quick Start](#quick-start) | ||
- [Services](#services) | ||
- [Monitoring](#monitoring) | ||
- [Example SQL Queries](#example-sql-queries) | ||
- [Running the Application](#running-the-application) | ||
- [How to run](#how-to-run) | ||
- [Database Structure](#database-structure) | ||
|
||
# Quick start | ||
|
||
We use `docker` with `docker compose` to run the services. This is the easiest way to get started. For instance to run the deploy-web service: | ||
|
||
```bash | ||
git clone [email protected]:akash-network/cloudmos.git ./console | ||
cd console | ||
npm run dc:up:dev -- deploy-web | ||
``` | ||
|
||
This would start the deploy-web service in development mode with all the dependencies (api, indexer, postgres) needed. While spinning up postgres it would also import a backup of the sandbox (by default) database to speed up the process. | ||
|
||
For more details on how to run the other services or modes see the [Running the Application](#running-the-application) section. | ||
|
||
# Services | ||
|
||
## Dataflow between services | ||
|