-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.32 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "lemon-python-api",
"version": "1.0.0",
"description": "AWS Lambda Serverless example with Python3",
"main": "index.js",
"scripts": {
"!server": "----- local에서 실행하기 (개발용) -----",
"python-local": "ENV=lemon STAGE=local python app.py --port 8201",
"server-local": "sls wsgi serve --profile lemon --port 8201",
"!deploy": "----- gulp 빌드후 dist 폴더에 압축한 다음, serverless를 통해서 deploy 실행 -----",
"deploy.lemon": "sls deploy --profile lemon --stage dev",
"!serve": "----- run in production mode (pip install waitress) -----",
"serve.none": "waitress-serve --call 'src:create_app'",
"serve.lemon": "waitress-serve --port=8201 app:app",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lemoncloud-io/lemon-python-api.git"
},
"keywords": [],
"author": "Steve Jung ([email protected])",
"license": "ISC",
"bugs": {
"url": "https://github.com/lemoncloud-io/lemon-python-api/issues"
},
"homepage": "https://github.com/lemoncloud-io/lemon-python-api#readme",
"devDependencies": {
"serverless-python-requirements": "^4.3.0",
"serverless-wsgi": "^1.7.4"
}
}