Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
graham-walker committed Oct 24, 2020
0 parents commit d9a3bf8
Show file tree
Hide file tree
Showing 79 changed files with 24,445 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
TODO.txt

#releases
/releases

# dependencies
/youtube-dl-express-backend/node_modules
/youtube-dl-react-frontend/node_modules
/youtube-dl-react-frontend/.pnp
.pnp.js

# testing
/youtube-dl-react-frontend/coverage

# production
/youtube-dl-react-frontend/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
.env

npm-debug.log*
yarn-debug.log*
yarn-error.log*
12 changes: 12 additions & 0 deletions FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# These are supported funding model platforms

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: grahamwalker
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
9 changes: 9 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
MIT License

Copyright (c) 2020 Graham Walker

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
242 changes: 242 additions & 0 deletions README.md

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions youtube-dl-express-backend/.env.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
MONGOOSE_URL=mongodb://localhost:27017/youtubeDlDB
BACKEND_PORT=5000
GLOBAL_PASSWORD=
SECURE_COOKIES=false
YOUTUBE_DL_PATH=youtube-dl
FFMPEG_PATH=ffmpeg
FFPROBE_PATH=ffprobe
THUMBNAIL_QUALITY=80
THUMBNAIL_CHROMA_SUBSAMPLING=4:4:4
OUTPUT_DIRECTORY=/youtube-dl
SUPERUSER_USERNAME=admin
SUPERUSER_PASSWORD=password
JWT_TOKEN_SECRET=secret
PAGE_SIZE=50
SKIP_HASHING=false
VERBOSE=false
NODE_ENV=production
1 change: 1 addition & 0 deletions youtube-dl-express-backend/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
engine-strict=true
Loading

0 comments on commit d9a3bf8

Please sign in to comment.