Skip to content

Commit a14a0d8

Browse files
authored
Merge pull request #1 from kuwacom/develop
Release first version
2 parents 1c27a9b + cddec2c commit a14a0d8

File tree

20 files changed

+1410
-65
lines changed

20 files changed

+1410
-65
lines changed

.env.example

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# API Endpoint
2+
CAPCUT_API_URL="https://edit-api-sg.capcut.com/lv/v1"
3+
BYTEINTL_API_URL="wss://sami-sg1.byteintlapi.com/internal/api/v1"
4+
5+
# Access Setting
6+
DEVICE_TIME=""
7+
SIGN=""
8+
USER_AGENT="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36"
9+
10+
# Node Setting
11+
ERROR_HANDLE=true
12+
13+
# Server Setting
14+
HOST="0.0.0.0"
15+
PORT="8080"
16+
ORIGIN="*"
17+
18+
# TOKEN reset interval time (hour)
19+
TOKEN_INTERVAL=12

.gitignore

Lines changed: 2 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ pids
1616
*.seed
1717
*.pid.lock
1818

19-
# Directory for instrumented libs generated by jscoverage/JSCover
20-
lib-cov
21-
2219
# Coverage directory used by tools like istanbul
2320
coverage
2421
*.lcov
@@ -35,15 +32,8 @@ bower_components
3532
# node-waf configuration
3633
.lock-wscript
3734

38-
# Compiled binary addons (https://nodejs.org/api/addons.html)
39-
build/Release
40-
4135
# Dependency directories
4236
node_modules/
43-
jspm_packages/
44-
45-
# Snowpack dependency directory (https://snowpack.dev/)
46-
web_modules/
4737

4838
# TypeScript cache
4939
*.tsbuildinfo
@@ -66,65 +56,12 @@ web_modules/
6656
# Optional REPL history
6757
.node_repl_history
6858

69-
# Output of 'npm pack'
70-
*.tgz
71-
72-
# Yarn Integrity file
73-
.yarn-integrity
74-
7559
# dotenv environment variable files
7660
.env
77-
.env.development.local
78-
.env.test.local
79-
.env.production.local
80-
.env.local
8161

8262
# parcel-bundler cache (https://parceljs.org/)
8363
.cache
8464
.parcel-cache
8565

86-
# Next.js build output
87-
.next
88-
out
89-
90-
# Nuxt.js build / generate output
91-
.nuxt
92-
dist
93-
94-
# Gatsby files
95-
.cache/
96-
# Comment in the public line in if your project uses Gatsby and not Next.js
97-
# https://nextjs.org/blog/next-9-1#public-directory-support
98-
# public
99-
100-
# vuepress build output
101-
.vuepress/dist
102-
103-
# vuepress v2.x temp and cache directory
104-
.temp
105-
.cache
106-
107-
# Docusaurus cache and generated files
108-
.docusaurus
109-
110-
# Serverless directories
111-
.serverless/
112-
113-
# FuseBox cache
114-
.fusebox/
115-
116-
# DynamoDB Local files
117-
.dynamodb/
118-
119-
# TernJS port file
120-
.tern-port
121-
122-
# Stores VSCode versions used for testing VSCode extensions
123-
.vscode-test
124-
125-
# yarn v2
126-
.yarn/cache
127-
.yarn/unplugged
128-
.yarn/build-state.yml
129-
.yarn/install-state.gz
130-
.pnp.*
66+
# ts dist
67+
dist

env.example

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# API Endpoint
2+
CAPCUT_API_URL="https://edit-api-sg.capcut.com/lv/v1/"
3+
BYTEINTL_API_URL="wss://sami-sg1.byteintlapi.com/internal/api/v1/"
4+
5+
# Access Setting
6+
DEVICE_TIME=""
7+
SIGN=""
8+
USER_AGENT="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36"

0 commit comments

Comments
 (0)