CoolFace
Apppublic

OnyxMunk/AudioForge

sourceHugging Facemitupdated 8mo agoView on Hugging Face
0likes
create_env_with_token.bat33 linesDownload Raw Back to scripts
1@echo off
2REM Quick .env creation with Keith's HF token
3
4echo.
5echo ========================================
6echo   Creating .env with your HF token
7echo ========================================
8echo.
9
10python "%~dp0create_env_with_token.py"
11
12if errorlevel 1 (
13    echo.
14    echo ERROR: Failed to create .env file
15    pause
16    exit /b 1
17)
18
19echo.
20echo ========================================
21echo   SUCCESS! .env file created
22echo ========================================
23echo.
24echo Your Hugging Face token is configured!
25echo.
26echo Next steps:
27echo   1. cd backend
28echo   2. pip install -e ".[dev]"
29echo   3. python scripts\init_db.py
30echo   4. uvicorn app.main:app --reload
31echo.
32pause
33