<<<<<<< HEAD
=======
My Goal of the project was to create strict communities where people can find and join communities of people who are similar to them
npm create vite@latest
npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init
npm i express express-session
npm i mongoose
mongoose
.connect(process.env.DB_CONNECT)
.then(() => {
console.log("DATABASE INITIALIZED");
//Start node js server after database connects
app.listen(process.env.SERVER_PORT, () => {
console.log(`SERVER STARTED ON PORT: ${process.env.SERVER_PORT}`);
});
})
.catch((e) => {
console.log("DATABASE FAILURE: ", e.message);
});
381634639dbed26b16ed4283e6058773eef33de8