diff --git a/.github/workflows/auth.yml b/.github/workflows/auth.yml index 77c780b4..3660749f 100644 --- a/.github/workflows/auth.yml +++ b/.github/workflows/auth.yml @@ -43,7 +43,7 @@ jobs: - name: Build and push uses: docker/build-push-action@v2 with: - context: ./services/ads + context: ./services/auth platforms: linux/amd64,linux/arm64 push: true tags: ${{ secrets.PUBLIC_ECR_REGISTRY }}/storedog/auth:latest diff --git a/.github/workflows/dbm.yml b/.github/workflows/dbm.yml index 3bcb1e9c..5bbb4391 100644 --- a/.github/workflows/dbm.yml +++ b/.github/workflows/dbm.yml @@ -43,7 +43,7 @@ jobs: - name: Build and push uses: docker/build-push-action@v2 with: - context: ./services/ads + context: ./services/dbm platforms: linux/amd64,linux/arm64 push: true tags: ${{ secrets.PUBLIC_ECR_REGISTRY }}/storedog/dbm:latest diff --git a/services/auth/bootstrap.py b/services/auth/bootstrap.py index d688b420..dce4bc3b 100644 --- a/services/auth/bootstrap.py +++ b/services/auth/bootstrap.py @@ -29,4 +29,4 @@ def initialize_database(app, db): second_user = Users('fake@notrealemail.com', 'fake123') db.session.add(first_user) db.session.add(second_user) - db.session.commit() + db.session.commit() \ No newline at end of file diff --git a/services/dbm/bootstrap.py b/services/dbm/bootstrap.py index ee1e059a..05d005e1 100644 --- a/services/dbm/bootstrap.py +++ b/services/dbm/bootstrap.py @@ -47,4 +47,4 @@ def initialize_database(app, db): ) db.session.add(newItem) i+1 - db.session.commit() + db.session.commit() \ No newline at end of file