Skip to content

Commit e5df8cf

Browse files
committed
feat: add tools stacks / gogig
1 parent fd9f665 commit e5df8cf

2 files changed

Lines changed: 33 additions & 0 deletions

File tree

stacks/tools/docker-compose.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
services:
2+
gogig:
3+
image: ghcr.io/tech-dex/gogig:latest
4+
container_name: gogig
5+
env_file:
6+
- stack.env
7+
restart: unless-stopped
8+
networks:
9+
- db_network
10+
11+
networks:
12+
db_network:
13+
external: true
14+
name: db_network

stacks/tools/sample.env

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Discord Bot Configuration
2+
DISCORD_TOKEN=your_discord_bot_token
3+
DISCORD_GUILD_ID=your_guild_id
4+
5+
# Reddit API Configuration
6+
REDDIT_CLIENT_ID=your_reddit_client_id
7+
REDDIT_CLIENT_SECRET=your_reddit_client_secret
8+
REDDIT_USER_AGENT='GoGig:v1.0 (by /u/yourusername)'
9+
10+
# PostgreSQL Database Configuration
11+
POSTGRES_HOST=localhost
12+
POSTGRES_PORT=5432
13+
POSTGRES_USER=your_postgres_username
14+
POSTGRES_PASSWORD=your_postgres_password
15+
POSTGRES_DATABASE=gogig_db
16+
17+
# Application Settings
18+
CHECK_INTERVAL=10
19+
MAX_JOBS_PER_CHECK=10

0 commit comments

Comments
 (0)