Skip to content

Commit

Permalink
Feature/blast UI (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
timurishmuratov7 authored Aug 9, 2024
1 parent c7d3552 commit 6b9f71d
Show file tree
Hide file tree
Showing 167 changed files with 5,749 additions and 680 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/blast_query-master.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: blast_query
run-name: blast_query

# Build and push nolabs image using GitHub Cache API
# Only if relevant files were changed

on:
push:
branches:
- master

jobs:
build:
permissions:
contents: read
packages: write

uses: ./.github/workflows/build-docker.yaml
with:
microservice_name: "blast_query"

push:
if: github.repository == 'BasedLabs/NoLabs'
needs: build

permissions:
contents: read
packages: write

uses: ./.github/workflows/push-docker.yaml
with:
microservice_name: "blast_query"
20 changes: 20 additions & 0 deletions .github/workflows/blast_query-pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: blast_query
run-name: blast_query

# Build and push nolabs image using GitHub Cache API
# Only if relevant files were changed

on:
pull_request:
branches:
- master

jobs:
build:
permissions:
contents: read
packages: write

uses: ./.github/workflows/build-docker.yaml
with:
microservice_name: "blast_query"
9 changes: 8 additions & 1 deletion compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,14 @@ services:
build:
context: microservices/reinvent
dockerfile: build/Dockerfile
command: --host=0.0.0.0 --port=5790 --workers=1
command: --host=0.0.0.0 --port=5790
blast_query:
image: 'ghcr.io/basedlabs/blast_query:1.0.0'
network_mode: host
build:
context: microservices/blast_query
dockerfile: build/Dockerfile
command: --host=0.0.0.0 --port=5740 --workers=1
nolabs:
image: 'ghcr.io/basedlabs/nolabs:2.1.5'
network_mode: host
Expand Down
Loading

0 comments on commit 6b9f71d

Please sign in to comment.