Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update index.js #265

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 19 additions & 9 deletions server/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,36 @@ const setupDB = require('./utils/db');
const { port } = keys;
const app = express();

// Middleware
app.use(express.urlencoded({ extended: true }));
app.use(express.json());
app.use(
helmet({
app.use(helmet({
contentSecurityPolicy: false,
frameguard: true
})
);
}));
app.use(cors());

// Database setup
setupDB();

// Passport configuration
require('./config/passport')(app);

// Routes
app.use(routes);

// Start the server
const server = app.listen(port, () => {
console.log(
`${chalk.green('✓')} ${chalk.blue(
`Listening on port ${port}. Visit http://localhost:${port}/ in your browser.`
)}`
);
console.log(
`${chalk.green('✓')} ${chalk.blue(`Listening on port ${port}. Visit http://localhost:${port}/ in your browser.`)}`
);
});

// Initialize socket
socket(server);

// Error handling middleware (optional)
app.use((err, req, res, next) => {
console.error(err.stack);
res.status(500).send('Something broke!');
});