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

Frontend fixes and improvements #93

Merged
merged 22 commits into from
Nov 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
cacaf78
Frontend/equip modal fix (#52)
privilegemendes Oct 12, 2023
00aa0e2
Github Actions implementation (#51)
snthtcs Oct 12, 2023
564d72b
Bugfix: Reset filter not responsive (#56)
prik Oct 18, 2023
44196a4
Hotfix/hair item filter (#54)
carlos-kryha Oct 18, 2023
8430b07
Update 'who are we' section text (#57)
carlos-kryha Oct 18, 2023
6e42170
Fix build error (#59)
Pandelissym Oct 18, 2023
f0eb615
Check tokeninfo is defined before setting up wallet watcher (#60)
Pandelissym Oct 18, 2023
31ae801
Fix marketplaceAverageLevel metric (#63)
Pandelissym Oct 20, 2023
446c61d
Fix button placement in sell modal and arrow svg (#66)
Pandelissym Oct 20, 2023
1957058
switch to MAIN interaction mode when entering character sell process …
Pandelissym Oct 20, 2023
f6d3abf
Removed yarn from cache (#50)
MangoDream1 Oct 23, 2023
df362cf
Return meaningfull error messages from contract (#69)
Pandelissym Oct 24, 2023
6a4b5ba
Migrate frontend to yarn 4 (#71)
carlos-kryha Oct 24, 2023
09c7a1d
Fix build errors after yarn4 upgrade (#74)
carlos-kryha Oct 25, 2023
d60cd00
Bug: Low: Keplr Connect button makes Keprl logo disappear on hover (#79)
prik Oct 27, 2023
bc750eb
Marketplace price selector (#70)
privilegemendes Oct 30, 2023
061b56e
Frontend Improvement: Add network selector (#77)
privilegemendes Oct 30, 2023
a2a6bf7
Frontend upgrade 1 (staging) (#81)
carlos-kryha Nov 7, 2023
7e5fe83
Implement build precheck (#85)
snthtcs Nov 8, 2023
1cb23f8
Read network info from useNetwork hook instead of const (agoric-conte…
carlos-kryha Nov 8, 2023
977d822
Fix frontend price filter (#87)
carlos-kryha Nov 10, 2023
23035ed
Fix production pipeline (#89)
snthtcs Nov 13, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
58 changes: 58 additions & 0 deletions .github/workflows/kread-emerynet-cicd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: CI/CD Emerynet

on:
pull_request:
branches:
- develop
types:
- closed

jobs:
build_and_deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Install Skaffold
run: |
curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/latest/skaffold-linux-amd64
sudo install skaffold /usr/local/bin/
shell: bash

- name: Authenticate with Google Cloud
uses: google-github-actions/setup-gcloud@v0
with:
service_account_key: ${{ secrets.GCP_AUTH_KEY }}
project_id: ${{ secrets.PROJECT_ID }}
export_default_credentials: true

- name: Activate Service Account
run: |
gcloud auth activate-service-account ${{ secrets.GCP_SA }} --key-file=$GOOGLE_APPLICATION_CREDENTIALS
gcloud components install gke-gcloud-auth-plugin

- name: Login to GCR
uses: docker/login-action@v3
with:
registry: eu.gcr.io
username: _json_key
password: ${{ secrets.GCP_AUTH_KEY }}

- name: Login to Kubernetes
uses: azure/k8s-set-context@v1
with:
kubeconfig: ${{ secrets.KUBECONFIG }}
cluster-context: ${{ secrets.CLUSTER_CONTEXT }}
namespace: ${{ secrets.K8S_NAMESPACE_EMERYNET }}

- name: Build and push Docker images
run: |
cd frontend
export $(grep -v '^#' .env.emerynet | xargs)
envsubst < ../deployment/emerynet/workloads/config/ui-config.template.yaml > ../deployment/emerynet/workloads/config/ui-config.yaml
envsubst < skaffold.emerynet.template.yaml > skaffold.emerynet.yaml
skaffold run --filename skaffold.emerynet.yaml
shell: bash

58 changes: 58 additions & 0 deletions .github/workflows/kread-mainnet-cicd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: CI/CD Mainnet

on:
pull_request:
branches:
- main
types:
- closed

jobs:
build_and_deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Install Skaffold
run: |
curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/latest/skaffold-linux-amd64
sudo install skaffold /usr/local/bin/
shell: bash

- name: Authenticate with Google Cloud
uses: google-github-actions/setup-gcloud@v0
with:
service_account_key: ${{ secrets.GCP_AUTH_KEY }}
project_id: ${{ secrets.PROJECT_ID }}
export_default_credentials: true

- name: Activate Service Account
run: |
gcloud auth activate-service-account ${{ secrets.GCP_SA }} --key-file=$GOOGLE_APPLICATION_CREDENTIALS
gcloud components install gke-gcloud-auth-plugin

- name: Login to GCR
uses: docker/login-action@v3
with:
registry: eu.gcr.io
username: _json_key
password: ${{ secrets.GCP_AUTH_KEY }}

- name: Login to Kubernetes
uses: azure/k8s-set-context@v1
with:
kubeconfig: ${{ secrets.KUBECONFIG }}
cluster-context: ${{ secrets.CLUSTER_CONTEXT }}
namespace: ${{ secrets.K8S_NAMESPACE_MAINNET }}

- name: Build and push Docker images
run: |
cd frontend
export $(grep -v '^#' .env.production | xargs)
envsubst < ../deployment/production/workloads/config/ui-config.template.yaml > ../deployment/production/workloads/config/ui-config.yaml
envsubst < skaffold.production.template.yaml > skaffold.production.yaml
skaffold run --filename skaffold.production.yaml
shell: bash

33 changes: 33 additions & 0 deletions .github/workflows/kread-skaffold-precheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Skaffold Build PR Check

on:
pull_request:
branches:
- develop
types:
- opened
- synchronize

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Install Skaffold
run: |
curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/latest/skaffold-linux-amd64
sudo install skaffold /usr/local/bin/
shell: bash

- name: Skaffold build precheck
run: |
cd frontend
export $(grep -v '^#' .env.emerynet | xargs)
envsubst < skaffold.precheck.yaml > skaffold.emerynet.yaml
skaffold build --filename skaffold.emerynet.yaml
shell: bash


2 changes: 2 additions & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* @WietzeSlagman
* @carlos-kryha
Loading
Loading