Skip to content

Commit

Permalink
Refactored solution directory structure. (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
Utar94 authored Jan 1, 2024
1 parent 9bafb06 commit b0c9b98
Show file tree
Hide file tree
Showing 171 changed files with 27 additions and 21 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build-backend.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build PokéData Backend

on:
push:
branches:
- main
paths:
- 'backend/**'
workflow_dispatch:

defaults:
run:
working-directory: ./backend

jobs:
build:
name: Build PokéData Backend
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Build Docker Image
run: docker build . -t francispion.azurecr.io/pokedata_api:${{ github.sha }} -f src/PokeData/Dockerfile
18 changes: 0 additions & 18 deletions .github/workflows/build.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Pok�Data
# PokéData

Pokémon data management.

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ services:
environment:
ACCEPT_EULA: 'Y'
MSSQL_SA_PASSWORD: m7tPnE6dB5TQxYCW

pokedata_api:
build:
context: .
context: ./backend
dockerfile: /src/PokeData/Dockerfile
image: pokedata_api
container_name: PokeData_api
Expand Down

0 comments on commit b0c9b98

Please sign in to comment.