Compare commits
2 Commits
Author | SHA1 | Date |
---|---|---|
1708639776959.sdtroot | 374059e032 | |
1708639776959.sdtroot | bcf0aee554 |
|
@ -3,6 +3,7 @@ spec:
|
||||||
appName: app-test # 앱의 이름입니다.
|
appName: app-test # 앱의 이름입니다.
|
||||||
runFile: main.py # 앱의 실행 파일입니다.
|
runFile: main.py # 앱의 실행 파일입니다.
|
||||||
env:
|
env:
|
||||||
|
bin: python3
|
||||||
virtualEnv: s3-env # 사용할 가상환경 이름입니다.
|
virtualEnv: s3-env # 사용할 가상환경 이름입니다.
|
||||||
package: requirements.txt # 설치할 Python 패키지 정보 파일입니다.(기본 값은 requirement.txt 입니다.)
|
package: requirements.txt # 설치할 Python 패키지 정보 파일입니다.(기본 값은 requirement.txt 입니다.)
|
||||||
runtime: python3.9
|
runtime: python3.9
|
||||||
|
|
4
main.py
4
main.py
|
@ -1,7 +1,9 @@
|
||||||
import sdtclouds3
|
import sdtclouds3
|
||||||
import time
|
import time
|
||||||
|
|
||||||
sdtcloudClient = sdtclouds3.sdtclouds3()
|
S3Id = "" # S3 AWS Access Key
|
||||||
|
S3Key = "" # S3 AWS Access Sercet Key
|
||||||
|
sdtcloudClient = sdtclouds3.sdtclouds3(S3Id, S3Key)
|
||||||
|
|
||||||
def runAction():
|
def runAction():
|
||||||
while True:
|
while True:
|
||||||
|
|
Loading…
Reference in New Issue