Initial commit - OBS Source Switcher Plugin UI
Complete Next.js application for managing OBS Source Switcher - Stream management with multiple screen layouts - Team management CRUD operations - SQLite database integration - OBS WebSocket API integration - Updated to latest versions (Next.js 15.4.1, React 19.1.0, Tailwind CSS 4.0.0) - Enhanced .gitignore for privacy and development
This commit is contained in:
commit
1d4b1eefba
43 changed files with 9596 additions and 0 deletions
13
config.js
Normal file
13
config.js
Normal file
|
@ -0,0 +1,13 @@
|
|||
// import path from 'path';
|
||||
const path = require('path')
|
||||
// let FILE_DIRECTORY = null;
|
||||
|
||||
const config = {
|
||||
FILE_DIRECTORY: path.resolve(process.env.FILE_DIRECTORY || './files'),
|
||||
};
|
||||
|
||||
|
||||
export function FILE_DIRECTORY() {
|
||||
return path.resolve(process.env.FILE_DIRECTORY || './files');
|
||||
}
|
||||
// export default config;
|
Loading…
Add table
Add a link
Reference in a new issue