{"id":26955257,"url":"https://github.com/programordie2/openforum","last_synced_at":"2025-07-18T15:33:07.158Z","repository":{"id":249279968,"uuid":"831044058","full_name":"programORdie2/OpenForum","owner":"programORdie2","description":"OpenForum - A Flexible Open-Source Forum Template","archived":false,"fork":false,"pushed_at":"2024-09-05T15:09:57.000Z","size":183,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-09-06T05:05:55.952Z","etag":null,"topics":["backend","forum","frontend","fullstack","social-network","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/programORdie2.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-19T14:28:20.000Z","updated_at":"2024-09-05T15:09:51.000Z","dependencies_parsed_at":"2024-09-06T04:59:40.714Z","dependency_job_id":"8e1cdf1e-a845-4b3e-9d9e-77ca0f3170fb","html_url":"https://github.com/programORdie2/OpenForum","commit_stats":null,"previous_names":["programordie2/basicsocialmedia","programordie2/openforum"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/programORdie2%2FOpenForum","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/programORdie2%2FOpenForum/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/programORdie2%2FOpenForum/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/programORdie2%2FOpenForum/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/programORdie2","download_url":"https://codeload.github.com/programORdie2/OpenForum/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246924995,"owners_count":20855822,"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":["backend","forum","frontend","fullstack","social-network","typescript"],"created_at":"2025-04-03T02:29:54.108Z","updated_at":"2025-04-03T02:29:54.360Z","avatar_url":"https://github.com/programORdie2.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ⚠️⚠️⚠️ WARNING: THIS PROJECT IS STILL UNDER DEVELOPMENT AND IS NOT READY FOR PRODUCTION USE ⚠️⚠️⚠️\n\n# OpenForum\n\nOpenForum is an open-source forum template built with a TypeScript backend, designed to serve as a base for developers to create their own forums. Users can discuss any topic, making it a versatile platform for various communities.\n\n## Table of Contents\n\n- [OpenForum](#openforum)\n  - [Table of Contents](#table-of-contents)\n  - [Project Overview](#project-overview)\n  - [Features](#features)\n  - [Installation](#installation)\n    - [Prerequisites](#prerequisites)\n    - [Steps](#steps)\n  - [Usage](#usage)\n  - [Contributing](#contributing)\n    - [Contributor License Agreement (CLA)](#contributor-license-agreement-cla)\n    - [Code Style and Testing](#code-style-and-testing)\n  - [Feedback](#feedback)\n  - [License](#license)\n\n## Project Overview\n\nOpenForum is designed to be a flexible and extensible forum template that developers can use to build custom forums for their specific needs. With a TypeScript backend, it ensures type safety and scalability.\n\n## Features\n\n- **Multi-topic discussions**: Users can create and participate in discussions on a wide range of topics.\n- **TypeScript backend**: Ensures type safety and maintainability.\n- **MongoDB integration**: For robust data storage and management.\n- **Node.js**: Leverages the power and simplicity of Node.js for backend operations.\n\n## Installation\n\n### Prerequisites\n\n- **Node.js**: Ensure you have Node.js installed. You can download it from [nodejs.org](https://nodejs.org/).\n- **MongoDB**: Make sure you have MongoDB installed and running. You can download it from [mongodb.com](https://www.mongodb.com/).\n\n### Steps\n\n1. **Clone the repository**:\n    ```sh\n    git clone https://github.com/programORdie2/OpenForum.git\n    cd OpenForum\n    ```\n\n2. **Install dependencies**:\n    ```sh\n    npm install\n    ```\n\n3. **Set up environment variables**:\n    Create a `.env` file in the root directory and add the following:\n    ```env\n    PORT=3000\n    JWT_SECRET=\"ASecretToEncryptSessions\"\n    DB_URL=\"mongodb://localhost:27017/openforum\"\n    ```\n\n4. **Run the application**:\n    ```sh\n    npm run dev\n    ```\n    Or:\n    ```\n    npm run build\n    npm start\n    ```\n\n5. **Access the forum**:\n    Open your browser and navigate to `http://localhost:3000`.\n\n## Usage\n\nOnce the forum is up and running, users can start creating discussions on any topic. Developers can further customize the forum by modifying the source code to suit their specific requirements.\n\n## Contributing\n\nWe welcome contributions from the community! To contribute to OpenForum, please follow these steps:\n\n1. **Fork the repository**.\n2. **Create a new branch**: `git checkout -b my-feature-branch`.\n3. **Make your changes** and commit them: `git commit -m 'Add new feature'`.\n4. **Push to the branch**: `git push origin my-feature-branch`.\n5. **Submit a pull request**.\n\n### Contributor License Agreement (CLA)\n\nAll contributors must sign a Contributor License Agreement (CLA) before their contributions can be merged. This ensures that the project can remain open-source and free to use.\n\n### Code Style and Testing\n\nPlease adhere to the existing code style and ensure your changes pass all automated error checks before submitting a pull request.\n\n## Feedback\n\nWe value your feedback! If you have any suggestions, issues, or feature requests, please [open an issue](https://github.com/programORdie2/OpenForum/issues) on GitHub.\n\n## License\n\nOpenForum is released under the AGPL-3.0 License. See the [LICENSE](LICENSE) file for more details.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprogramordie2%2Fopenforum","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprogramordie2%2Fopenforum","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprogramordie2%2Fopenforum/lists"}