2024-02-23 21:57:34 +00:00
# snowballtools-base
2023-12-11 14:35:34 +00:00
2024-02-05 09:26:28 +00:00
## Setup
2024-02-23 21:57:34 +00:00
- Clone the `snowballtools-base` repo
2023-12-11 14:35:34 +00:00
```bash
2024-01-16 08:10:14 +00:00
git clone git@github.com:snowball-tools/snowballtools-base.git
2023-12-11 14:35:34 +00:00
```
- In root of the repo, install depedencies
```bash
yarn
```
2024-01-19 09:52:25 +00:00
- Build packages
```bash
2024-01-24 11:28:07 +00:00
yarn build --ignore frontend
2024-01-19 09:52:25 +00:00
```
2024-02-05 09:26:28 +00:00
## Backend
2024-01-19 09:52:25 +00:00
- Change directory to `packages/backend`
```bash
cd packages/backend
```
2024-02-26 22:33:44 +00:00
- Rename backend config file from [environments/local.toml.example ](packages/backend/environments/local.toml.example ) to `local.toml`
```bash
mv environments/local.toml.example environments/local.toml
```
2024-02-15 12:32:37 +00:00
- Set `gitHub.oAuth.clientId` and `gitHub.oAuth.clientSecret` in backend [config file ](packages/backend/environments/local.toml )
2024-02-23 21:57:34 +00:00
- Client ID and secret will be available after [creating an OAuth app ](https://docs.github.com/en/apps/oauth-apps/building-oauth-apps/creating-an-oauth-app )
2024-02-01 05:48:54 +00:00
- In "Homepage URL", type `http://localhost:3000`
2024-02-15 11:54:57 +00:00
- In "Authorization callback URL", type `http://localhost:3000/organization/projects/create`
2024-02-01 05:48:54 +00:00
- Generate a new client secret after app is created
2024-01-30 14:20:53 +00:00
2024-02-23 21:57:34 +00:00
### Backend Production
2024-02-12 06:04:01 +00:00
2024-02-22 13:54:06 +00:00
- Let us assume the following domains for backend and frontend
2024-02-23 21:57:34 +00:00
- Backend server: `api.snowballtools.com`
- Frontend app: `dashboard.snowballtools.com`
2024-02-12 06:04:01 +00:00
2024-02-22 13:54:06 +00:00
- Update the following in backend [config file ](packages/backend/environments/local.toml )
2024-02-23 21:57:34 +00:00
2024-02-22 13:54:06 +00:00
```toml
[server]
...
[server.session]
# Secret should be changed to a different random string
secret = "p4yfpkqnddkui2iw7t6hbhwq74lbqs7sidnc382"
# Set URL of the frontend app
2024-02-23 21:57:34 +00:00
appOriginUrl = "https://dashboard.snowballtools.com"
2024-02-22 13:54:06 +00:00
# Set to true for session cookies to work behind proxy
trustProxy = true
# Set empty domain when using secure connection
domain = ""
2024-02-12 06:04:01 +00:00
```
2024-02-22 13:54:06 +00:00
- Set `gitHub.oAuth.clientId` and `gitHub.oAuth.clientSecret` in backend [config file ](packages/backend/environments/local.toml )
2024-02-23 21:57:34 +00:00
- Client ID and secret will be available after [creating an OAuth app ](https://docs.github.com/en/apps/oauth-apps/building-oauth-apps/creating-an-oauth-app )
- In "Homepage URL", type `https://dashboard.snowballtools.com`
- In "Authorization callback URL", type `https://dashboard.snowballtools.com/organization/projects/create`
2024-02-22 13:54:06 +00:00
- Generate a new client secret after app is created
2024-02-12 06:04:01 +00:00
2024-02-22 13:54:06 +00:00
- Set `gitHub.webhookUrl` in backend [config file ](packages/backend/environments/local.toml )
2024-02-23 21:57:34 +00:00
2024-02-22 13:54:06 +00:00
```toml
...
[gitHub]
2024-02-23 21:57:34 +00:00
webhookUrl = "https://api.snowballtools.com"
2024-02-22 13:54:06 +00:00
...
```
- Let us assume domain for Laconicd to be `api.laconic.com` and set the following in backend [config file ](packages/backend/environments/local.toml )
2024-02-23 21:57:34 +00:00
2024-02-22 13:54:06 +00:00
```toml
...
[registryConfig]
fetchDeploymentRecordDelay = 5000
# Use actual port for REST endpoint
restEndpoint = "http://api.laconic.com:1317"
# Use actual port for GQL endpoint
gqlEndpoint = "http://api.laconic.com:9473/api"
# Set private key of account to be used in Laconicd
privateKey = "0wtu92cd4f1y791ezpjwgzzazni4dmd3q3mzqc3t6i6r9v06ji784tey6hwmnn69"
# Set Bond ID to be used for publishing records
bondId = "8xk8c2pb61kajwixpm223zvptr2x2ncajq0vd998p6aqhvqqep2reu6pik245epf"
chainId = "laconic_9000-1"
2024-02-23 09:17:29 +00:00
# Set authority that is existing in the chain
authority = "laconic"
2024-02-22 13:54:06 +00:00
[registryConfig.fee]
amount = "200000"
denom = "aphoton"
gas = "750000"
...
2024-02-12 06:04:01 +00:00
```
2024-02-22 13:54:06 +00:00
- Start the server in `packages/backend`
2024-02-12 06:04:01 +00:00
2024-02-14 05:33:22 +00:00
```bash
2024-02-22 13:54:06 +00:00
yarn start
2024-02-14 05:33:22 +00:00
```
2024-02-23 21:57:34 +00:00
### Backend Development
2024-02-22 13:54:06 +00:00
- Set `gitHub.oAuth.clientId` and `gitHub.oAuth.clientSecret` in backend [config file ](packages/backend/environments/local.toml )
2024-02-23 21:57:34 +00:00
- Client ID and secret will be available after [creating an OAuth app ](https://docs.github.com/en/apps/oauth-apps/building-oauth-apps/creating-an-oauth-app )
2024-02-22 13:54:06 +00:00
- In "Homepage URL", type `http://localhost:3000`
- In "Authorization callback URL", type `http://localhost:3000/organization/projects/create`
- Generate a new client secret after app is created
- Setup Laconicd
- Run the laconicd stack following this [doc ](https://git.vdb.to/cerc-io/stack-orchestrator/src/branch/main/docs/laconicd-with-console.md )
- Get the private key and set `registryConfig.privateKey` in backend [config file ](packages/backend/environments/local.toml )
2024-02-23 21:57:34 +00:00
2024-02-22 13:54:06 +00:00
```bash
laconic-so --stack fixturenet-laconic-loaded deploy exec laconicd "laconicd keys export mykey --unarmored-hex --unsafe"
# WARNING: The private key will be exported as an unarmored hexadecimal string. USE AT YOUR OWN RISK. Continue? [y/N]: y
# 754cca7b4b729a99d156913aea95366411d072856666e95ba09ef6c664357d81
```
2024-02-23 21:57:34 +00:00
2024-02-22 13:54:06 +00:00
- Get the REST and GQL endpoint ports of Laconicd and replace the ports for `registryConfig.restEndpoint` and `registryConfig.gqlEndpoint` in backend [config file ](packages/backend/environments/local.toml )
2024-02-23 21:57:34 +00:00
2024-02-22 13:54:06 +00:00
```bash
# For registryConfig.restEndpoint
laconic-so --stack fixturenet-laconic-loaded deploy port laconicd 1317
# 0.0.0.0:32777
# For registryConfig.gqlEndpoint
laconic-so --stack fixturenet-laconic-loaded deploy port laconicd 9473
# 0.0.0.0:32771
```
2024-02-23 21:57:34 +00:00
2024-02-23 09:17:29 +00:00
- Set authority in `registryConfig.authority` in backend [config file ](packages/backend/environments/local.toml )
2024-02-22 13:54:06 +00:00
- Run the script to create bond, reserve the authority and set authority bond
2024-02-23 21:57:34 +00:00
2024-02-22 13:54:06 +00:00
```bash
yarn test:registry:init
# snowball:initialize-registry bondId: 6af0ab81973b93d3511ae79841756fb5da3fd2f70ea1279e81fae7c9b19af6c4 +0ms
```
2024-02-23 21:57:34 +00:00
2024-02-22 13:54:06 +00:00
- Get the bond id and set `registryConfig.bondId` in backend [config file ](packages/backend/environments/local.toml )
2024-02-12 06:04:01 +00:00
2024-02-15 11:54:57 +00:00
- Setup ngrok for GitHub webhooks
2024-02-23 21:57:34 +00:00
- [ngrok getting started ](https://ngrok.com/docs/getting-started/ )
2024-02-15 11:54:57 +00:00
- Start ngrok and point to backend server endpoint
2024-02-23 21:57:34 +00:00
2024-02-15 11:54:57 +00:00
```bash
ngrok http http://localhost:8000
```
2024-02-23 21:57:34 +00:00
2024-02-15 11:54:57 +00:00
- Look for the forwarding URL in ngrok
2024-02-23 21:57:34 +00:00
```bash
2024-02-15 11:54:57 +00:00
...
Forwarding https://19c1-61-95-158-116.ngrok-free.app -> http://localhost:8000
...
```
2024-02-23 21:57:34 +00:00
2024-02-15 11:54:57 +00:00
- Set `gitHub.webhookUrl` in backend [config file ](packages/backend/environments/local.toml )
2024-02-23 21:57:34 +00:00
2024-02-15 11:54:57 +00:00
```toml
...
[gitHub]
webhookUrl = "https://19c1-61-95-158-116.ngrok-free.app"
...
```
2024-02-12 06:04:01 +00:00
2024-02-14 05:33:22 +00:00
- Start the server in `packages/backend`
2024-01-19 09:52:25 +00:00
```bash
2024-02-22 13:54:06 +00:00
yarn start:dev
2024-01-19 09:52:25 +00:00
```
2024-02-05 09:26:28 +00:00
## Frontend
2024-02-01 08:34:07 +00:00
- Change directory to `packages/frontend` in a new terminal
2024-02-23 21:57:34 +00:00
2024-02-01 08:34:07 +00:00
```bash
cd packages/frontend
```
2024-02-26 22:08:22 +00:00
- Rename [.env.example ](packages/frontend/.env.example ) to `.env`
```bash
mv .env.example .env
```
2024-02-01 08:34:07 +00:00
- Copy the GitHub OAuth app client ID from previous steps and set it in frontend [.env ](packages/frontend/.env ) file
2024-02-23 21:57:34 +00:00
2024-02-12 06:04:01 +00:00
```env
2024-02-01 08:34:07 +00:00
REACT_APP_GITHUB_CLIENT_ID = < CLIENT_ID >
2023-12-11 14:35:34 +00:00
```
2024-02-26 12:24:35 +00:00
- Set `REACT_APP_GITHUB_PWA_TEMPLATE_REPO` and `REACT_APP_GITHUB_IMAGE_UPLOAD_PWA_TEMPLATE_REPO` in [.env ](packages/frontend/.env ) file
2024-02-23 21:57:34 +00:00
2024-02-15 11:54:57 +00:00
```env
2024-02-22 13:54:06 +00:00
# Set actual owner/name of the template repo that will be used for creating new repo
2024-02-26 12:24:35 +00:00
REACT_APP_GITHUB_PWA_TEMPLATE_REPO = cerc-io/test-progressive-web-app
REACT_APP_GITHUB_IMAGE_UPLOAD_PWA_TEMPLATE_REPO = cerc-io/image-upload-pwa-example
2024-02-15 11:54:57 +00:00
```
2024-02-23 21:57:34 +00:00
### Frontend Production
2024-02-05 09:26:28 +00:00
2024-02-22 13:54:06 +00:00
- Let us assume the following domains for backend and frontend
2024-02-23 21:57:34 +00:00
- Backend server: `api.snowballtools.com`
- Frontend app: `dashboard.snowballtools.com`
2023-12-11 14:35:34 +00:00
2024-02-22 13:54:06 +00:00
- Set the following values in [.env ](packages/frontend/.env ) file
2024-02-23 21:57:34 +00:00
```env
2024-02-22 13:54:06 +00:00
# Backend server endpoint
2024-02-23 21:57:34 +00:00
REACT_APP_SERVER_URL = 'https://api.snowballtools.com'
2023-12-11 14:35:34 +00:00
```
2024-02-22 13:54:06 +00:00
- Sign in to [wallet connect ](https://cloud.walletconnect.com/sign-in ) to create a project ID
- Create a project and add information to use wallet connect SDK
- Add project name and select project type as `App`
2024-02-23 21:57:34 +00:00
- Set project home page URL to `https://dashboard.snowballtools.com`
2024-02-22 13:54:06 +00:00
- On creation of project, use the `Project ID` and set it in `REACT_APP_WALLET_CONNECT_ID` in [.env ](packages/frontend/.env ) file
2024-02-23 21:57:34 +00:00
```env
REACT_APP_WALLET_CONNECT_ID = < PROJECT_ID >
```
2024-02-05 09:26:28 +00:00
- Build the React application
2024-02-23 21:57:34 +00:00
2024-02-05 09:26:28 +00:00
```bash
yarn build
```
- Use a web server for hosting static built files
2024-02-23 21:57:34 +00:00
2024-02-05 09:26:28 +00:00
```bash
python3 -m http.server -d build 3000
```
2024-02-12 06:04:01 +00:00
2024-02-23 21:57:34 +00:00
### Frontend Development
2024-02-22 13:54:06 +00:00
- Copy the graphQL endpoint from terminal and add the endpoint in the [.env ](packages/frontend/.env ) file present in `packages/frontend`
2024-02-23 21:57:34 +00:00
2024-02-22 13:54:06 +00:00
```env
REACT_APP_SERVER_URL = 'http://localhost:8000'
```
- Sign in to [wallet connect ](https://cloud.walletconnect.com/sign-in ) to create a project ID.
- Create a project and add information to use wallet connect SDK
- Add project name and select project type as `App`
- Project home page URL is not required to be set
- On creation of project, use the `Project ID` and set it in `REACT_APP_WALLET_CONNECT_ID` in [.env ](packages/frontend/.env ) file
2024-02-23 21:57:34 +00:00
```env
REACT_APP_WALLET_CONNECT_ID = < Project_ID >
```
2024-02-22 13:54:06 +00:00
- Start the React application
```bash
yarn start
```
- The React application will be running in `http://localhost:3000/`