generated from jwson-automation/blueberry_template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
456 additions
and
352 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# PowerShell 스크립트로 .env 파일 생성 | ||
|
||
# 현재 작업 중인 디렉터리 경로 가져오기 | ||
$TargetDir = Get-Location | ||
|
||
# .env 파일 내용 | ||
$envContent = @" | ||
# please replace 'your_api_key_here' with your actual API key | ||
GOOGLE_API_KEY=your_api_key_here | ||
GPT_API_KEY=your_api_key_here | ||
# Other environment variables can be added here | ||
"@ | ||
|
||
# .env 파일 생성 | ||
$envFilePath = Join-Path -Path $TargetDir -ChildPath ".env" | ||
Write-Output "Creating .env file at: $envFilePath" | ||
|
||
# UTF-8 인코딩으로 파일 생성 | ||
$envContent | Out-File -FilePath $envFilePath -Encoding utf8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# .env 파일 생성 | ||
echo "# please replace 'your_api_key_here' with your actual API key" > ".env" | ||
echo "GOOGLE_API_KEY=your_api_key_here" >> ".env" | ||
echo "GPT_API_KEY=your_api_key_here" >> ".env" | ||
echo "# Other environment variables can be added here" >> ".env" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.