{"id":25155000,"url":"https://github.com/abdullah00001/elevancenet_backend","last_synced_at":"2026-04-11T09:44:03.589Z","repository":{"id":276415587,"uuid":"929053185","full_name":"Abdullah00001/ElevanceNet_Backend","owner":"Abdullah00001","description":"This repository contains the backend for ElevanceNet, built with TypeScript, Node.js, Express, Mongoose, Redis, Docker, and CI/CD. It powers a distraction-free social platform for professionals, ensuring seamless performance, scalability, and efficient data handling.","archived":false,"fork":false,"pushed_at":"2025-02-17T04:53:41.000Z","size":160,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-17T05:29:36.037Z","etag":null,"topics":["back-end","cicd","docker","expressjs","mongoose","nodejs","rest-api","restful-api","software-development","typescript","vercel","web-development"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Abdullah00001.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"License","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-02-07T18:10:27.000Z","updated_at":"2025-02-14T17:15:37.000Z","dependencies_parsed_at":"2025-02-08T04:26:07.670Z","dependency_job_id":"0eb02d85-6bac-488d-9d98-a01ccf53c11c","html_url":"https://github.com/Abdullah00001/ElevanceNet_Backend","commit_stats":null,"previous_names":["abdullah00001/elevancenet_backend"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Abdullah00001%2FElevanceNet_Backend","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Abdullah00001%2FElevanceNet_Backend/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Abdullah00001%2FElevanceNet_Backend/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Abdullah00001%2FElevanceNet_Backend/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Abdullah00001","download_url":"https://codeload.github.com/Abdullah00001/ElevanceNet_Backend/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246989501,"owners_count":20865306,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["back-end","cicd","docker","expressjs","mongoose","nodejs","rest-api","restful-api","software-development","typescript","vercel","web-development"],"created_at":"2025-02-09T00:19:35.096Z","updated_at":"2026-04-11T09:44:03.545Z","avatar_url":"https://github.com/Abdullah00001.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ElevanceNet Backend\n\nElevanceNet is a distraction-free social platform tailored for developers, engineers, and tech enthusiasts who want a resourceful and informative feed focused only on tech-related content. Unlike general platforms like Facebook, Instagram, or X, which flood users with entertainment, reels, and memes, ElevanceNet ensures that users get only tech industry-related posts to enhance productivity and knowledge.\n\n## 🚀 Tech Stack\n\n- **TypeScript** – A strongly-typed superset of JavaScript that improves code quality and maintainability.\n- **Node.js** – A runtime environment for executing JavaScript code on the server.\n- **Express** – A web application framework for Node.js.\n- **Mongoose** – ODM (Object Data Modeling) library for MongoDB and Node.js.\n- **Redis** – In-memory data structure store used as a database, cache, and message broker.\n- **Docker** – Platform for containerizing applications for easy deployment.\n- **CI/CD** – Continuous Integration and Continuous Deployment pipeline.\n- **Winston** – A logging library for Node.js.\n- **Morgan** – HTTP request logger middleware for Node.js.\n- **JWT** – JSON Web Tokens for secure authentication.\n- **Cloudinary** – Cloud-based image and video management service.\n- **Swagger (OpenAPI)** – API documentation generation for easier consumption of backend services.\n\n## 🧩 Features\n\n- **Authentication** – Secure login and registration process using JWT.\n- **User-Controlled Feed** – Users have control over the content that appears in their feed, tailored to their preferences.\n- **Post Management** – CRUD functionality to create, update, delete, and view posts.\n- **Profile Management** – Users can manage their profiles, update personal information, and preferences.\n- **Interaction** – Users can interact with posts via likes, comments, and shares.\n- **Report \u0026 Feedback** – Allows users to report content and provide feedback on the platform’s functionality.\n\n## ⚙️ Installation \u0026 Setup\n\n### Prerequisites\n\nEnsure you have the following installed:\n\n- Docker\n- Node.js (v16.x or higher)\n- MongoDB (for local development, or use a cloud service for production)\n\n### Setup for Development\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/your-username/elevancenet-backend.git\n   cd elevancenet-backend\n   ```\n\n2. Install dependencies:\n\n   ```bash\n   npm install\n   ```\n\n3. Copy the `.env.example` to `.env` and fill in the necessary values:\n\n   ```bash\n   cp .env.example .env\n   ```\n\n4. Run the application in development mode:\n\n   ```bash\n   npm run dev\n   ```\n\n   The backend will be available at `http://localhost:3000`.\n\n### Environment Variables\n\nMake sure to set the following variables in your `.env` file:\n\n```ini\n# ===============================\n#  General Configuration\n# ===============================\nNODE_ENV=development\nPORT=3000\n\n# ===============================\n#  Mongodb Configuration\n# ===============================\nMONGODB_DEVELOPMENT_URI=mongodb://localhost:27017/development_db\nMONGODB_PRODUCTION_URI=mongodb+srv://username:password@cluster.mongodb.net/production_db\n\n# ===============================\n#  Cloudinary Configuration\n# ===============================\nCLOUDINARY_NAME=your_cloud_name\nCLOUDINARY_API_KEY=your_api_key\nCLOUDINARY_API_SECRET_KEY=your_api_secret_key\n\n# ===============================\n#  Redis Configuration\n# ===============================\nREDIS_DEVELOPMENT_URI=redis://localhost:6379\nREDIS_PRODUCTION_URI=redis://your_redis_url\nREDIS_PRODUCTION_TOKEN=your_redis_token\n\n# ========================================\n#  Authentication\u0026Security Configuration\n# ========================================\nJWT_ACCESS_TOKEN_SECRET_KEY=your_access_token_secret_key\nJWT_REFRESH_TOKEN_SECRET_KEY=your_refresh_token_secret_key\nJWT_SALT_ROUND=10\n\n# ===============================\n# Email Configuration (SMTP)\n# ===============================\nSMTP_HOST=smtp.mailtrap.io\nSMTP_PORT=587\nSMTP_USER=your_smtp_user\nSMTP_PASS=your_smtp_pass\n\n# ===============================\n# CORS Configuration\n# ===============================\nCORS_ORIGIN_DEV=http://localhost:3000\nCORS_ORIGIN_PROD=https://your_production_url\n```\n\n# Docker Setup\n\nFor running the app in production using Docker:\n\n## Build the Docker image\n\n```bash\ndocker build -t elevancenet-backend .\n```\n\n## Run the container\n\n```bash\ndocker run -p 3000:3000 elevancenet-backend\n```\n\nThe backend will be available at [http://localhost:3000](http://localhost:3000) (or the specified production domain).\n\n## 📜 API Documentation\n\nFor detailed API documentation, visit the Swagger UI at:  \n[https://elevancenet.vercel.app/api/v1/api-docs](https://elevancenet.vercel.app/api/v1/api-docs)\n\n## 🚀 Deployment\n\nThe backend is hosted on Vercel for production. The CI/CD pipeline automatically pushes updates to Docker Hub.\n\n## 🛠️ Contribution Guidelines\n\nThis project is currently not open for external contributions. However, feel free to check the code and suggest improvements via issues.\n\n## 📄 License\n\nThis project is licensed under the MIT License. See the LICENSE file for more details.\n\n## 📞 Contact\n\nFor any issues or inquiries, feel free to reach out to us at:  \n[support@elevancenet.com](mailto:support@elevancenet.com)\n\nYour contributions are highly appreciated! 🚀\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabdullah00001%2Felevancenet_backend","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabdullah00001%2Felevancenet_backend","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabdullah00001%2Felevancenet_backend/lists"}