Create your own secret club. Invite your friends.
- Secretive: Create your secret group
- Socialize: Start posting
- Privacy: Anonymity to outsiders.
Express-APP-template/
├── src
├── auth/ # Handles authentication logic with passportjs
├── controllers/ # Request handlers (business logic)
├── models/ # Database logic and queries
├── routes/ # Application routes
├── views/ # EJS templates
├── public/ # Static assets (CSS, JS, images)
├── app.js # App entry point
├── package.json
├── .env.example # Environment variables example
└── README.md
| Command | Description |
|---|---|
npm run dev |
Starts development server with live reload |
npm start |
Starts production server |
Create a .env file in the root directory:
PORT=3000
DATABASE_URL=postgresql://user:password@localhost:5432/dbnameRefer to
.env.examplefor required variables.
If this template helped you, consider giving the repo a ⭐ on GitHub — it really helps!








