-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
48 lines (44 loc) · 2.26 KB
/
Copy path.env.example
File metadata and controls
48 lines (44 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# =============================================================================
# .env.example — Environment Variable Reference for Media Downloader
# =============================================================================
#
# USAGE
# Copy this file to .env and edit the values as needed.
# The setup scripts read these values from your shell environment,
# not from this file directly — so export them before running:
#
# macOS / Linux (bash / zsh):
# export STREAMLIT_PORT=8501
# ./setup_macos.sh # or ./setup_linux.sh
#
# Windows (PowerShell):
# $env:STREAMLIT_PORT="8501"
# .\setup_windows.ps1
#
# NOTE: This file is safe to commit. The actual .env file (if you create one)
# is listed in .gitignore and will NOT be committed.
# =============================================================================
# ---------------------------------------------------------------------------
# Streamlit server port
# The local port on which the Streamlit development server listens.
# Change this if 8501 is already in use on your machine.
# ---------------------------------------------------------------------------
STREAMLIT_PORT=8501
# ---------------------------------------------------------------------------
# Skip system package manager checks
# Set to "1" to skip automatic installation of system packages
# (Homebrew/ffmpeg on macOS, apt/dnf/pacman on Linux, winget/choco on Windows).
# Useful when all dependencies are already installed and you want a faster start.
# ---------------------------------------------------------------------------
SKIP_PKG_MANAGER=0
# ---------------------------------------------------------------------------
# (macOS only) Skip Homebrew and ffmpeg checks specifically
# Equivalent to SKIP_PKG_MANAGER=1 for the macOS setup script.
# ---------------------------------------------------------------------------
SKIP_BREW=0
# ---------------------------------------------------------------------------
# Recreate the Python virtual environment from scratch
# Set to "1" to delete the existing .venv directory and rebuild it cleanly.
# Use this when you encounter dependency conflicts or broken environments.
# ---------------------------------------------------------------------------
RECREATE_VENV=0