Skip to content

Commit f944555

Browse files
authored
Merge pull request #193 from MeshJS/feature/UX-info-page
Feature/ux info page
2 parents 503d87f + c285539 commit f944555

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+4801
-1283
lines changed

.dockerignore

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# Dependencies
2+
node_modules
3+
npm-debug.log*
4+
yarn-debug.log*
5+
yarn-error.log*
6+
.pnpm-debug.log*
7+
8+
# Next.js
9+
.next
10+
out
11+
dist
12+
build
13+
14+
# Testing
15+
coverage
16+
.nyc_output
17+
*.test.ts
18+
*.test.tsx
19+
*.spec.ts
20+
*.spec.tsx
21+
__tests__
22+
23+
# Environment variables
24+
.env
25+
26+
# IDE
27+
.vscode
28+
.idea
29+
*.swp
30+
*.swo
31+
*~
32+
33+
# OS
34+
.DS_Store
35+
Thumbs.db
36+
37+
# Git
38+
.git
39+
.gitignore
40+
.gitattributes
41+
42+
# Documentation
43+
*.md
44+
!README.md
45+
docs
46+
47+
# Docker
48+
Dockerfile
49+
.dockerignore
50+
docker-compose*.yml
51+
52+
# CI/CD
53+
.github
54+
.vercel
55+
56+
# Misc
57+
.cache
58+
.turbo
59+
*.log
60+
tsconfig.tsbuildinfo
61+
62+

.env.example

Lines changed: 44 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,44 @@
1-
DATABASE_URL=""
2-
NEXT_PUBLIC_BLOCKFROST_API_KEY_MAINNET=""
3-
NEXT_PUBLIC_BLOCKFROST_API_KEY_PREPROD=""
4-
BLOB_READ_WRITE_TOKEN=""
1+
# Environment Variables Template
2+
# Copy this file to .env.local for local development (non-Docker)
3+
# Or use .env.dev.example / .env.prod.example for Docker Compose setups
4+
5+
# Database Configuration
6+
# For local development: use localhost
7+
# For Docker Compose: use the service name (e.g., 'postgres')
8+
DATABASE_URL="postgresql://postgres:postgres@localhost:5432/multisig"
9+
DIRECT_URL="postgresql://postgres:postgres@localhost:5432/multisig"
10+
11+
# Node Environment (development, test, or production)
12+
NODE_ENV="development"
13+
14+
# JWT Secret (minimum 32 characters required)
15+
# Generate a secure secret: openssl rand -base64 32
16+
JWT_SECRET="your-jwt-secret-minimum-32-characters-long"
17+
18+
# Pinata IPFS Configuration
19+
# Get your JWT token from https://app.pinata.cloud/
20+
PINATA_JWT="your-pinata-jwt-token"
21+
22+
# GitHub Personal Access Token
23+
# Create one at https://github.com/settings/tokens
24+
# GITHUB_TOKEN="your-github-token" (Optional - for GitHub issue creation)
25+
26+
# Blockfrost API Keys
27+
# Get your API keys from https://blockfrost.io/
28+
# These are client-side variables (exposed to browser)
29+
NEXT_PUBLIC_BLOCKFROST_API_KEY_MAINNET="your-blockfrost-mainnet-api-key"
30+
NEXT_PUBLIC_BLOCKFROST_API_KEY_PREPROD="your-blockfrost-preprod-api-key"
31+
32+
# Optional: Skip environment validation during builds
33+
# Useful for Docker builds where env vars are set at runtime
34+
# SKIP_ENV_VALIDATION=true
35+
36+
# Optional: NextAuth Configuration (if using NextAuth.js)
37+
# NEXTAUTH_SECRET="your-nextauth-secret"
38+
# NEXTAUTH_URL="http://localhost:3000"
39+
40+
# Optional: Discord Integration (if using Discord features)
41+
# DISCORD_CLIENT_ID="your-discord-client-id"
42+
# DISCORD_CLIENT_SECRET="your-discord-client-secret"
43+
# DISCORD_BOT_TOKEN="your-discord-bot-token"
44+
# DISCORD_GUILD_ID="your-discord-guild-id"

0 commit comments

Comments
 (0)