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 #257

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
26 changes: 17 additions & 9 deletions server/index.js
Original file line number Diff line number Diff line change
@@ -1,37 +1,45 @@
// Load environment variables from .env file
require('dotenv').config();

// Import necessary modules
const express = require('express');
const chalk = require('chalk');
const cors = require('cors');
const helmet = require('helmet');

// Import configuration and utility modules
const keys = require('./config/keys');
const routes = require('./routes');
const socket = require('./socket');
const setupDB = require('./utils/db');

// Destructure the port from keys
const { port } = keys;

// Initialize the Express application
const app = express();

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

// Database setup
setupDB();

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

// Set up 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.`
)}`
`${chalk.green('✓')} ${chalk.blue(`Listening on port ${port}. Visit http://localhost:${port}/ in your browser.`)}`
);
});

// Initialize socket connections
socket(server);