Fix jwt-token
This commit is contained in:
@@ -156,32 +156,33 @@ async function startServer() {
|
||||
await sequelize.authenticate();
|
||||
console.log('Database connected successfully.');
|
||||
|
||||
// Run migrations first
|
||||
try {
|
||||
await runMigrations();
|
||||
} catch (migrationError) {
|
||||
console.error('Migration error:', migrationError);
|
||||
console.log('Continuing with database sync...');
|
||||
}
|
||||
|
||||
// Always sync database in containerized environments or development
|
||||
// Check if tables exist before syncing
|
||||
// STEP 1: Sync database first to create base tables
|
||||
try {
|
||||
// Use alter: false to prevent destructive changes in production
|
||||
await sequelize.sync({ force: false, alter: false });
|
||||
console.log('Database synchronized.');
|
||||
|
||||
// Seed database with initial data
|
||||
await seedDatabase();
|
||||
} catch (syncError) {
|
||||
console.error('Database sync error:', syncError);
|
||||
// If sync fails, try force sync (this will drop and recreate tables)
|
||||
console.log('Attempting force sync...');
|
||||
await sequelize.sync({ force: true });
|
||||
console.log('Database force synchronized.');
|
||||
|
||||
// Seed database with initial data
|
||||
}
|
||||
|
||||
// STEP 2: Run migrations after tables exist
|
||||
try {
|
||||
await runMigrations();
|
||||
} catch (migrationError) {
|
||||
console.error('Migration error:', migrationError);
|
||||
throw migrationError; // Fatal error - don't continue
|
||||
}
|
||||
|
||||
// STEP 3: Seed database with initial data
|
||||
try {
|
||||
await seedDatabase();
|
||||
} catch (seedError) {
|
||||
console.error('Seeding error:', seedError);
|
||||
throw seedError; // Fatal error - don't continue
|
||||
}
|
||||
|
||||
server.listen(PORT, () => {
|
||||
|
||||
Reference in New Issue
Block a user