Skip to content

Commit 6f2f5a4

Browse files
committed
Video Transcoding Completed
0 parents  commit 6f2f5a4

File tree

9 files changed

+2643
-0
lines changed

9 files changed

+2643
-0
lines changed

Diff for: .env.sample

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
AWS_REGION=YOUR_AWS_REGION
2+
AWS_ACCESS_KEY_ID=YOUR_AWS_ACCESS_KEY_ID
3+
AWS_SECRET_ACCESS_KEY=YOUR_AWS_SECRET_ACCESS_KEY
4+
AWS_SQS_QUEUE_URL=YOUR_AWS_SQS_QUEUE_URL
5+
AWS_ECS_TASK_ARN=YOUR_AWS_ECS_TASK_ARN
6+
AWS_ECS_CLUSTER_ARN=YOUR_AWS_ECS_CLUSTER_ARN
7+
AWS_ECS_CONTAINER_NAME=YOUR_AWS_ECS_CONTAINER_NAME

Diff for: .gitignore

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Node.js
2+
node_modules/
3+
npm-debug.log
4+
yarn-error.log
5+
6+
# Dependency directories
7+
/.pnp
8+
.pnp.js
9+
10+
# Testing
11+
/coverage
12+
13+
# Build output
14+
/build
15+
16+
# Environment variables
17+
.env
18+
.env.local
19+
.env.development.local
20+
.env.test.local
21+
.env.production.local
22+
23+
# Editor and IDE files
24+
.vscode/
25+
.idea/
26+
*.sublime-project
27+
*.sublime-workspace
28+
29+
# Logs and debugging
30+
logs/
31+
*.log
32+
npm-debug.log*
33+
yarn-debug.log*
34+
yarn-error.log*

0 commit comments

Comments
 (0)