Skip to content

Commit d416a79

Browse files
committed
Create a new repository
0 parents  commit d416a79

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+14506
-0
lines changed

.env.example

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# See EnvironmentVariables.md for more information.
2+
3+
# Necessary API Keys
4+
# -------------------
5+
6+
# TikTok Session ID
7+
# Obtain your session ID by logging into TikTok and copying the sessionid cookie.
8+
TIKTOK_SESSION_ID=""
9+
10+
# ImageMagick Binary Path
11+
# Download ImageMagick from https://imagemagick.org/script/download.php
12+
IMAGEMAGICK_BINARY=""
13+
14+
# Pexels API Key
15+
# Register at https://www.pexels.com/api/ to get your API key.
16+
PEXELS_API_KEY=""
17+
18+
# Optional API Keys
19+
# -----------------
20+
21+
# OpenAI API Key
22+
# Visit https://openai.com/api/ for details on obtaining an API key.
23+
OPENAI_API_KEY=""
24+
25+
# AssemblyAI API Key
26+
# Sign up at https://www.assemblyai.com/ to receive an API key.
27+
ASSEMBLY_AI_API_KEY=""
28+
29+
# Google API Key
30+
# Generate your API key through https://makersuite.google.com/app/apikey
31+
GOOGLE_API_KEY=""
32+
33+
# Front end port
34+
FE_PORT=3000
35+
# Alternate front end port
36+
FE_NUXT=5000

.github/FUNDING.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# These are supported funding model platforms
2+
3+
github: [FujiwaraChoki]

.github/ISSUE_TEMPLATE/bug_report.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: "[BUG]"
5+
labels: ''
6+
assignees: FujiwaraChoki
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Desktop (please complete the following information):**
27+
- OS: [e.g. Linux, Windows]
28+
- Browser [e.g. chrome, edge]
29+
- Python Version [e.g. 3.9]
30+
31+
**Additional context**
32+
Add any other context about the problem here.
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.gitignore

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
__pycache__
2+
.env
3+
temp/*
4+
sounds/*
5+
output/*
6+
images/*
7+
*.zip
8+
*.srt
9+
*.mp4
10+
*.mp3
11+
.history
12+
subtitles/*
13+
/venv
14+
client_secret.json
15+
main.py-oauth2.json
16+
.DS_Store
17+
Backend/output*
18+
Songs/
19+
node_modules
20+
/UI/.nuxt

.vscode/settings.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"typescript.tsdk": "node_modules/typescript/lib",
3+
"i18n-ally.localesPaths": ["UI/locales"],
4+
"i18n-ally.keystyle": "nested"
5+
}

0 commit comments

Comments
 (0)