Skip to content

Commit

Permalink
OK
Browse files Browse the repository at this point in the history
  • Loading branch information
cowuake committed Oct 22, 2024
1 parent 60a368f commit be78cc2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ jobs:
os: [ubuntu-latest, windows-latest]

steps:
- name: Set up build and runtime deps (Ubuntu)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y docker-compose
# - name: Set up build and runtime deps (Ubuntu)
# if: matrix.os == 'ubuntu-latest'
# run: |
# sudo apt-get update
# sudo apt-get install -y docker-compose

- name: Set up build and runtime deps (Windows)
if: matrix.os == 'windows-latest'
run: |
choco install docker-compose
# - name: Set up build and runtime deps (Windows)
# if: matrix.os == 'windows-latest'
# run: |
# choco install docker-compose

- name: Checkout code
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion run.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Write-Output "> Local environment is ready!"

# Docker Compose up
Write-Output "> Running Docker Compose..."
docker-compose up --build -d
docker compose up --build --detach

# Announce that FastLazyBee is up and running
Write-Output "> FastLazyBee is up and running! Please wait for initial data to be loaded into the database..."
Expand Down
2 changes: 1 addition & 1 deletion run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ echo "> Local environment is ready!"

# Docker Compose up
echo "> Running Docker Compose..."
docker-compose up --build -d
docker compose up --build --detach

# Announce that FastLazyBee is up and running
echo "> FastLazyBee is up and running! Please wait for initial data to be loaded into the database..."
Expand Down

0 comments on commit be78cc2

Please sign in to comment.