Skip to content

Commit

Permalink
- 24/7 content
Browse files Browse the repository at this point in the history
  • Loading branch information
togoshigekata committed Jul 10, 2021
1 parent 57d7a2e commit 90b2853
Show file tree
Hide file tree
Showing 70 changed files with 6,205 additions and 0 deletions.
109 changes: 109 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache

# Next.js build output
.next

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and *not* Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port
.idea/.gitignore
.idea/livestreamerslist.iml
.idea/modules.xml
.idea/vcs.xml
screenshots/
113 changes: 113 additions & 0 deletions config-default.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
{
"hostname": "AAA.com",

"debug": false,
"testData": false,

"https": {
"cert": "./ssl/AAA.crt",
"ca": "./ssl/AAA.ca-bundle",
"key": "./ssl/AAA.key"
},

"mongodb": {
"connectionString": "mongodb+srv://AAA:BBB@cluster0.ajcse.mongodb.net/CCC?retryWrites=true&w=majority"
},

"youtube": {
"enabled": false,
"enabledVideo": false,
"key": "AAA",
"videoDaysAgo": 3,
"videoLimit": 20,
"offlineLimit": 70
},

"twitch": {
"enabled": false,
"clientId": "AAA",
"clientSecret": "BBB"
},

"dlive": {
"enabled": false,
"key": "AAA"
},

"theta": {
"enabled": false
},

"trovo": {
"enabled": false
},

"schedule": {
"enabled": false,
"hoursAhead": 36
},

"rss": {
"enabled": false,
"daysAgo": 6,
"limit": 10
},

"tiktok": {
"enabled": false,
"daysAgo": 3,
"limit": 20
},

"tikapi": {
"enabled": false,
"key": "AAA"
},

"timers": {
"list": 1,
"youtube": 4,
"twitch": 4,
"dlive": 3,
"theta": 4,
"trovo": 5,
"youtubeVideo": 30,
"youtubeVideoList": 3,
"schedule": 3,
"rss": 30,
"rssList": 3,
"tiktok": 360,
"tiktokList": 5,
"price": 1
},

"twitter": {
"enabled": false,
"username": "AAA",
"buffer": 2,
"apiKey": "AAA",
"apiSecret": "BBB",
"accessToken": "CCC",
"accessTokenSecret": "DDD"
},

"twitterReddit": {
"enabled": false,
"username": "AAA",
"apiKey": "BBB",
"apiSecret": "CCC",
"accessToken": "DDD",
"accessTokenSecret": "EEE"
},

"telegram": {
"enabled": false,
"token": "AAA",
"channel": "BBB"
},

"price": {
"enabled": false,
"nomicsKey": "AAA"
}
}
Loading

0 comments on commit 90b2853

Please sign in to comment.