Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Discord Configuration
TOKEN=your_discord_bot_token_here
CLIENT_ID=your_discord_client_id_here

# Web Server Configuration
WEB_PORT=50000
WEB_URL=http://localhost:50000
SESSION_SECRET=change-this-to-a-random-secure-string

# MySQL Database Configuration
MYSQL_HOST=localhost
MYSQL_PORT=3306
MYSQL_USER=root
MYSQL_PASSWORD=your_mysql_password_here
MYSQL_DATABASE=arcane_system

# Steam API Configuration
STEAM_API_KEY=your_steam_api_key_here

# Environment
NODE_ENV=development
55 changes: 55 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# Environment variables
.env
.env.local
.env.*.local

# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Dependencies
node_modules/
jspm_packages/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Output of 'npm pack'
*.tgz

# yarn
.yarn-integrity

# parcel-bundler cache
.cache
.parcel-cache

# Next.js build output
.next
out

# IDE
.idea/
.vscode/
*.swp
*.swo
*~

# OS
.DS_Store
Thumbs.db

# Database
*.sqlite
*.sqlite3
*.db

# Backup files
*.bak
*.backup
157 changes: 0 additions & 157 deletions install.sh

This file was deleted.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{\n "name": "arcane-system",\n "version": "2.0.0",\n "description": "Advanced Discord & Steam synchronization system with web authentication",\n "main": "src/index.js",\n "scripts": {\n "start": "node src/index.js",\n "dev": "nodemon src/index.js",\n "test": "echo \"Error: no test specified\" && exit 1"\n },\n "keywords": ["discord", "steam", "authentication", "synchronization", "bot"],\n "author": "Lucas-Developer-Off",\n "license": "MIT",\n "dependencies": {\n "axios": "^1.6.5",\n "discord.js": "^14.14.1",\n "dotenv": "^16.3.1",\n "express": "^4.18.2",\n "express-session": "^1.17.3",\n "mysql2": "^3.6.5"\n },\n "devDependencies": {\n "nodemon": "^3.0.2"\n }\n}
1 change: 0 additions & 1 deletion version.txt

This file was deleted.