1234567891011121314151617181920 |
- nit-secrets.sh
- if [ ! -f .env.production.docker ]; then
- echo "Generating new JWT_SECRET..."
- JWT_SECRET=$(openssl rand -base64 64)
-
- cat > .env.production.docker << EOL
- NODE_ENV=production
- MONGODB_URI=mongodb://mongodb:27017/mydatabase
- JWT_SECRET=${JWT_SECRET}
- EOL
- chmod 600 .env.production.docker
- echo "Environment file created successfully"
- else
- echo "Environment file already exists"
- fi
|