2024-02-27 06:22:05 +00:00
# deployer
- Install dependencies
2024-06-22 22:07:47 +00:00
2024-02-27 06:22:05 +00:00
```bash
yarn
```
2024-06-22 22:07:47 +00:00
2024-02-27 17:30:35 +00:00
```bash
brew install jq # if you do not have jq installed already
```
2024-02-27 06:22:05 +00:00
- Run script to deploy app
2024-05-22 14:21:00 +00:00
- To deploy frontend app to `dashboard.staging.apps.snowballtools.com`
2024-06-22 22:07:47 +00:00
```bash
2024-05-22 14:21:00 +00:00
./deploy-frontend.staging.sh
```
2024-10-16 08:43:51 +00:00
2024-05-22 14:21:00 +00:00
- To deploy frontend app to `dashboard.apps.snowballtools.com`
2024-06-22 22:07:47 +00:00
```bash
2024-05-22 14:21:00 +00:00
./deploy-frontend.sh
```
2024-02-27 06:22:05 +00:00
- Commit the updated [ApplicationRecord ](records/application-record.yml ) and [ApplicationDeploymentRequest ](records/application-deployment-request.yml ) files to the repository
## Notes
- Any config env can be updated in [records/application-deployment-request.yml ](records/application-deployment-request.yml )
2024-06-22 22:07:47 +00:00
2024-02-27 06:22:05 +00:00
```yml
record:
...
config:
env:
LACONIC_HOSTED_CONFIG_app_server_url: https://snowballtools-base-api-001.apps.snowballtools.com
...
```
2024-06-22 22:07:47 +00:00
2024-02-27 06:22:05 +00:00
- On changing `LACONIC_HOSTED_CONFIG_app_github_clientid` , the GitHub client ID and secret need to be changed in backend config too
## Troubleshoot
2024-04-03 14:56:34 +00:00
- Check deployment status in [web-app deployer ](https://console.laconic.com/deployer ).
- Check records in [registry console app ](https://console.laconic.com/#/registry ).
2024-02-27 17:29:27 +00:00
2024-02-27 06:22:05 +00:00
- If deployment fails due to low bond balance
- Check balances
2024-06-22 22:07:47 +00:00
2024-02-27 06:22:05 +00:00
```bash
# Account balance
2024-10-16 08:43:51 +00:00
yarn laconic registry account get
2024-02-27 06:22:05 +00:00
# Bond balance
2024-10-16 08:43:51 +00:00
yarn laconic registry bond get --id 99c0e9aec0ac1b8187faa579be3b54f93fafb6060ac1fd29170b860df605be32
2024-02-27 06:22:05 +00:00
```
2024-06-22 22:07:47 +00:00
2024-02-27 06:22:05 +00:00
- Command to refill bond
2024-06-22 22:07:47 +00:00
2024-02-27 06:22:05 +00:00
```bash
2024-10-16 08:43:51 +00:00
yarn laconic registry bond refill --id 99c0e9aec0ac1b8187faa579be3b54f93fafb6060ac1fd29170b860df605be32 --type alnt --quantity 10000000
2024-02-27 17:30:35 +00:00
```