Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
yeseong0412 committed Aug 26, 2024
2 parents 414e5b5 + 89b7db8 commit ef0338c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ https://www.docker.com/products/docker-desktop/
이후 만약 아래와 같은 화면이 표시된다면 아래의 가이드를 따라주시고 아니라면, 아래 시작하기 섹션까지 스크롤 해주세요.
![image](https://github.com/user-attachments/assets/eb9ef775-f9fa-456c-b1f1-f2acb0b13fde)

Quit 클릭해주세요

왼쪽 하단의 검색 아이콘을 클릭한 후 아래 이미지처럼 cmd를 입력후 관리자 권환으로 실행합니다.
![image](https://github.com/user-attachments/assets/505df727-ab7f-4a67-8c91-e202bc6f8149)

Expand Down Expand Up @@ -197,7 +199,7 @@ JDK가 없다면 Download JDK를 클릭해 버전은 17로, Vendor는 아무거
명령어를 친 뒤 파일에 build 폴더가 생겼다면 성공입니다.

닫기 버튼을 통해 인텔리제이 초기화면으로 돌아갑니다.
닫기 버튼을 모른다는 소리 하지 마시고 왼쪽 위나 오른쪽 위에 닫기버튼 보통 빨강 혹은 X자로 표시되어있으니 그거 클릭하면 초기화면으로 돌아갑니다. 그래도 모르겠으면 그냥 인텔리제이 삭제했다가 다시 깔아 초기화면으로 돌아가세요.
보통의 닫기 버튼은 오른쪽 위에나 왼쪽 위에 X자 혹은 마우스커서를 가져다대면 빨강으로 토글되거나 애초에 빨강인 버튼을 클릭하시면 초기화면으로 돌아가시게 됩니다.

![image](images/2.png)

Expand Down
14 changes: 7 additions & 7 deletions infra/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,12 @@ module appsEnv './shared/apps-env.bicep' = {
}

module web './app/web.bicep' = {
name: 'web'
name: 'web-app'
params: {
name: '${abbrs.appContainerApps}web-${resourceToken}'
name: 'web-app'
location: location
tags: tags
identityName: '${abbrs.managedIdentityUserAssignedIdentities}web-${resourceToken}'
identityName: 'web-app'
applicationInsightsName: monitoring.outputs.applicationInsightsName
containerAppsEnvironmentName: appsEnv.outputs.name
containerRegistryName: registry.outputs.name
Expand All @@ -112,19 +112,19 @@ module web './app/web.bicep' = {
}

module server './app/server.bicep' = {
name: 'server'
name: 'server-app'
params: {
name: '${abbrs.appContainerApps}server-${resourceToken}'
name: 'server-app'
location: location
tags: tags
identityName: '${abbrs.managedIdentityUserAssignedIdentities}server-${resourceToken}'
identityName: 'server-app'
applicationInsightsName: monitoring.outputs.applicationInsightsName
containerAppsEnvironmentName: appsEnv.outputs.name
containerRegistryName: registry.outputs.name
exists: serverExists
appDefinition: serverDefinition
allowedOrigins: [
'https://${abbrs.appContainerApps}web-${resourceToken}.${appsEnv.outputs.domain}'
'https://web-app.${appsEnv.outputs.domain}'
]
}
scope: rg
Expand Down
2 changes: 1 addition & 1 deletion server/src/main/kotlin/com/server/AiService.kt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class AiService(
"이렇게 점점 시간이 지나다보면 저희 마을이 사라질 수도 있을 것 같습니다…..}\"\n" +
"시장님이 인구소멸에 대한 좋은 아이디어를 입력할꺼야.\n" +
"입력값을 바탕으로 인구소멸 문제를 해결할 수 있는지 판단해주고 만약 인구소멸을 해결할 수 있다 하면 \"{\"state\" : \"true\", \"message\" : \"좋은 아이디어에 대한 반응 랜덤으로 생성해줘\"}\" 이러한 형식으로 반환해줘.\n" +
"김춘배씨 이름은 안반환해줘도돼"+
"김춘배씨 이름은 안반환해줘도 되고 절대 코드블럭으로 감싸지마"+
"======================================\n" +
"사용자 입력 : {$text}"
)
Expand Down

0 comments on commit ef0338c

Please sign in to comment.