264 lines
8.5 KiB
JavaScript
264 lines
8.5 KiB
JavaScript
#!/usr/bin/env node
|
|
import { randomBytes } from 'crypto';
|
|
import { writeFileSync } from 'fs';
|
|
import inquirer from 'inquirer';
|
|
import { spawnSync } from 'child_process';
|
|
import chalk from 'chalk';
|
|
|
|
const genUrlSafeBase64 = (bytes) => {
|
|
return randomBytes(bytes)
|
|
.toString('base64')
|
|
.replace(/\+/g, '-')
|
|
.replace(/\//g, '_')
|
|
.replace(/=+$/g, '');
|
|
}
|
|
|
|
|
|
const genRandomSubdomain = (length = 32) => {
|
|
const chars = 'abcdefghijklmnopqrstuvwxyz';
|
|
let result = '';
|
|
for (let i = 0; i < length; i++) {
|
|
result += chars.charAt(Math.floor(Math.random() * chars.length));
|
|
}
|
|
return result;
|
|
}
|
|
|
|
const genAlphanumericPassword = (length = 24) => {
|
|
const chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
|
|
let result = '';
|
|
for (let i = 0; i < length; i++) {
|
|
result += chars.charAt(Math.floor(Math.random() * chars.length));
|
|
}
|
|
return result;
|
|
}
|
|
|
|
const generateSupabaseDatabaseUrl = async () => {
|
|
// Step 3: Run supabase login
|
|
console.log(chalk.blueBright('\nLaunching Supabase login...'));
|
|
spawnSync('npx', ['supabase', 'login'], { stdio: 'inherit' });
|
|
|
|
// Step 4: Prompt for project name and region
|
|
const projectName = "autumn-oss-db";
|
|
// const { region } = await inquirer.prompt([
|
|
// {
|
|
// type: 'list',
|
|
// name: 'region',
|
|
// message: 'Choose a Supabase region:',
|
|
// choices: [
|
|
// { name: 'eu-west-2 (London)', value: 'eu-west-2' },
|
|
// { name: 'us-east-1 (N. Virginia)', value: 'us-east-1' },
|
|
// { name: 'ap-southeast-1 (Singapore)', value: 'ap-southeast-1' },
|
|
// { name: 'ap-southeast-2 (Sydney)', value: 'ap-southeast-2' },
|
|
// { name: 'eu-central-1 (Frankfurt)', value: 'eu-central-1' },
|
|
// { name: 'us-west-1 (N. California)', value: 'us-west-1' },
|
|
// ],
|
|
// default: 'eu-west-2',
|
|
// },
|
|
// ]);
|
|
|
|
// Step 5: Generate DB password (alphanumeric only)
|
|
const dbPassword = genAlphanumericPassword(24); // 24 chars, alphanumeric
|
|
|
|
// Step 6: Create Supabase project
|
|
console.log(chalk.blueBright(`\nCreating Supabase project '${projectName}'...`));
|
|
const createResult = spawnSync(
|
|
'npx',
|
|
['supabase', 'projects', 'create', projectName, '--db-password', dbPassword],
|
|
{ stdio: 'inherit', encoding: 'utf-8' }
|
|
);
|
|
|
|
if (createResult.status !== 0) {
|
|
console.error('❌ Failed to create Supabase project.');
|
|
process.exit(1);
|
|
}
|
|
|
|
// List supabase projects
|
|
const listResult = spawnSync(
|
|
'npx',
|
|
['supabase', 'projects', 'list', '--output', 'json'],
|
|
{ encoding: 'utf-8' }
|
|
);
|
|
|
|
if (listResult.status !== 0) {
|
|
console.error('❌ Failed to list Supabase projects.');
|
|
process.exit(1);
|
|
}
|
|
|
|
const projects = JSON.parse(listResult.stdout);
|
|
const found = projects.find(p => p.name === projectName);
|
|
if (!found) {
|
|
console.error(chalk.red('❌ Failed to find new Supabase project.'));
|
|
process.exit(1);
|
|
}
|
|
const projectId = found.id;
|
|
const region = found.region;
|
|
|
|
// Step 8: Construct DATABASE_URL
|
|
const databaseUrl = `postgresql://postgres.${projectId}:${dbPassword}@aws-0-${region}.pooler.supabase.com:5432/postgres`;
|
|
console.log(chalk.greenBright(`\nGenerated DB password: ${dbPassword}\n`));
|
|
console.log(chalk.greenBright(`\nYour DATABASE_URL is:\n${databaseUrl}\n`));
|
|
console.log(chalk.yellow('--------------------------------'));
|
|
return databaseUrl;
|
|
}
|
|
|
|
const handleDatabaseSetup = async () => {
|
|
// Step 2: Ask user what to do for DB
|
|
console.log(chalk.magentaBright('\n================ Autumn Database Setup ================\n'));
|
|
const { dbOption } = await inquirer.prompt([
|
|
{
|
|
type: 'list',
|
|
name: 'dbOption',
|
|
message: chalk.cyan('How do you want to set up your database?'),
|
|
choices: [
|
|
{ name: 'Set up Supabase for Autumn', value: 'supabase' },
|
|
{ name: 'Paste in your own DATABASE_URL', value: 'paste' },
|
|
{ name: 'Paste in your own DATABASE_URL later', value: 'later' },
|
|
],
|
|
default: 'supabase',
|
|
},
|
|
]);
|
|
|
|
let databaseUrl = '';
|
|
|
|
if (dbOption === 'supabase') {
|
|
databaseUrl = await generateSupabaseDatabaseUrl();
|
|
} else if (dbOption === 'paste') {
|
|
databaseUrl = await inquirer.prompt([
|
|
{
|
|
type: 'input',
|
|
name: 'databaseUrl',
|
|
message: 'Paste in your DATABASE_URL:',
|
|
validate: (input) => input && input.length > 5,
|
|
},
|
|
]);
|
|
} else if (dbOption === 'later') {
|
|
databaseUrl = '';
|
|
}
|
|
|
|
return databaseUrl;
|
|
}
|
|
|
|
const handleLocalRunSetup = async () => {
|
|
// Step 10: Stripe webhook URL setup
|
|
console.log(chalk.magentaBright('\n================ Stripe Webhook Setup ================\n'));
|
|
const { webhookOption } = await inquirer.prompt([
|
|
{
|
|
type: 'list',
|
|
name: 'webhookOption',
|
|
message:
|
|
chalk.cyan('Stripe requires a public URL to send webhook events to your app.\nThis is read from the STRIPE_WEBHOOK_URL environment variable.\n\nWould you like to:'),
|
|
choices: [
|
|
{ name: '1. Generate a localtunnel URL (recommended for local development)', value: 'localtunnel' },
|
|
{ name: '2. Skip for now and paste in your own URL later', value: 'skip' },
|
|
],
|
|
default: 'localtunnel',
|
|
},
|
|
]);
|
|
|
|
let stripeWebhookVars = [];
|
|
|
|
if (webhookOption === 'localtunnel') {
|
|
const subdomain = genRandomSubdomain(32);
|
|
const webhookUrl = `https://${subdomain}.loca.lt`;
|
|
stripeWebhookVars.push(`STRIPE_WEBHOOK_URL=${webhookUrl}`);
|
|
stripeWebhookVars.push(`LOCALHOST_RUN_SUBDOMAIN=${subdomain}`);
|
|
console.log(chalk.greenBright(`\nTo start your webhook tunnel, run this in another terminal:\n`));
|
|
console.log(chalk.yellowBright(` npx localtunnel --port 8080 --subdomain ${subdomain}\n`));
|
|
console.log(chalk.greenBright(`\nTest your webhook URL with:\n`));
|
|
console.log(chalk.yellowBright(` curl ${webhookUrl}\n`));
|
|
console.log(chalk.cyan('If you need to restart the tunnel in the future, use the same command.'));
|
|
} else if (webhookOption === 'paste') {
|
|
const { stripeWebhookUrl } = await inquirer.prompt([
|
|
{
|
|
type: 'input',
|
|
name: 'stripeWebhookUrl',
|
|
message: chalk.cyan('Paste in your STRIPE_WEBHOOK_URL:'),
|
|
validate: (input) => input && input.length > 5,
|
|
},
|
|
]);
|
|
stripeWebhookVars.push(`STRIPE_WEBHOOK_URL=${stripeWebhookUrl}`);
|
|
} else {
|
|
// skip
|
|
}
|
|
|
|
console.log(chalk.yellow('--------------------------------'));
|
|
|
|
return stripeWebhookVars;
|
|
}
|
|
|
|
async function main() {
|
|
// Step 1: Generate secrets
|
|
console.log(chalk.magentaBright('\n================ Autumn Setup ================\n'));
|
|
const secrets = {
|
|
BETTER_AUTH_SECRET: genUrlSafeBase64(64),
|
|
ENCRYPTION_IV: genUrlSafeBase64(16),
|
|
ENCRYPTION_PASSWORD: genUrlSafeBase64(64),
|
|
BETTER_AUTH_URL: 'http://localhost:8080',
|
|
CLIENT_URL: 'http://localhost:3000',
|
|
};
|
|
|
|
let databaseUrl = "";
|
|
let stripeWebhookVars = [];
|
|
|
|
databaseUrl = await handleDatabaseSetup();
|
|
stripeWebhookVars = await handleLocalRunSetup();
|
|
|
|
// Step 11: Write to server/.env
|
|
console.log(chalk.magentaBright('\n================ Writing .env ================\n'));
|
|
const envSections = [];
|
|
|
|
// Autumn Auth section
|
|
envSections.push(
|
|
'# Autumn Auth',
|
|
`BETTER_AUTH_SECRET=${secrets.BETTER_AUTH_SECRET}`,
|
|
`ENCRYPTION_IV=${secrets.ENCRYPTION_IV}`,
|
|
`ENCRYPTION_PASSWORD=${secrets.ENCRYPTION_PASSWORD}`,
|
|
`BETTER_AUTH_URL=${secrets.BETTER_AUTH_URL}`,
|
|
`CLIENT_URL=${secrets.CLIENT_URL}`,
|
|
''
|
|
);
|
|
|
|
// Database section
|
|
if (databaseUrl) {
|
|
envSections.push(
|
|
'# Database',
|
|
`DATABASE_URL=${databaseUrl}`,
|
|
''
|
|
);
|
|
}
|
|
|
|
// Stripe Webhooks section
|
|
if (stripeWebhookVars.length > 0) {
|
|
envSections.push('# Stripe Webhooks');
|
|
envSections.push(...stripeWebhookVars);
|
|
envSections.push('');
|
|
}
|
|
|
|
const envVars = envSections.join('\n');
|
|
|
|
writeFileSync('server/.env', envVars);
|
|
console.log(chalk.greenBright('🎉 Setup complete! 🎉'));
|
|
console.log(chalk.cyan('You can find your env variables in server/.env'));
|
|
|
|
// Prompt to run pnpm run db:push at the end
|
|
const { runDbPush } = await inquirer.prompt([
|
|
{
|
|
type: 'confirm',
|
|
name: 'runDbPush',
|
|
message: chalk.cyan('Would you like to run "pnpm run db:push" to set up your tables now?'),
|
|
default: true,
|
|
},
|
|
]);
|
|
|
|
if (runDbPush) {
|
|
console.log(chalk.blueBright('\nRunning "pnpm run db:push"...'));
|
|
const dbPushResult = spawnSync('pnpm', ['run', 'db:push'], { stdio: 'inherit', encoding: 'utf-8' });
|
|
if (dbPushResult.status !== 0) {
|
|
console.error(chalk.red('❌ Failed to run "pnpm run db:push". Please check the error above.'));
|
|
process.exit(1);
|
|
}
|
|
console.log(chalk.greenBright('✅ Successfully ran "pnpm run db:push".'));
|
|
}
|
|
}
|
|
|
|
main();
|