-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·33 lines (33 loc) · 984 Bytes
/
package.json
File metadata and controls
executable file
·33 lines (33 loc) · 984 Bytes
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
33
{
"name": "split",
"description": "Split document endpoint",
"version": "0.1.0",
"main": "split.py",
"keywords": [
"load",
"split",
"count",
"aws-lambda",
"serverless-framework"
],
"author": "Lim Chee Kin",
"devDependencies": {
"serverless-python-requirements": "^6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/limcheekin/split"
},
"bugs": {
"url": "https://github.com/limcheekin/split/issues"
},
"homepage": "https://github.com/limcheekin/split#readme",
"scripts": {
"docker-build": "docker build -t ragwtf-text-splitter .",
"docker-save": "docker save ragwtf-text-splitter | gzip > ragwtf-text-splitter.tar.gz",
"docker-load": "docker load -i ragwtf-text-splitter.tar.gz",
"docker-run": "docker run -v /tmp:/tmp --env-file ./.env -p 8000:8000 -d ragwtf-text-splitter",
"docker-stop": "./docker-stop.sh",
"rm-all-docker-data": "docker system prune -a --volumes"
}
}