{"id":23092827,"url":"https://github.com/thd-ai-2023/devablos-project-v2","last_synced_at":"2026-01-08T14:31:01.953Z","repository":{"id":241549809,"uuid":"803216749","full_name":"THD-AI-2023/Devablos-Project-V2","owner":"THD-AI-2023","description":"Devabot Chatbot 🤖💬 - The Chabot Project for AIN-B-2-Internet-Technologies-SS-24 showcases a comprehensive chatbot application featuring a React-based client and a Node.js/Express backend, highlighting real-time communication and advanced API integration.","archived":false,"fork":false,"pushed_at":"2024-09-26T09:18:28.000Z","size":2194,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2024-12-16T21:39:05.078Z","etag":null,"topics":["docker","docker-compose","fullstack","gpt-assistant","javascript","open-source","openai-api","react","webapp"],"latest_commit_sha":null,"homepage":"https://devablos-v2.azurewebsites.net/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/THD-AI-2023.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-05-20T09:50:14.000Z","updated_at":"2024-07-09T09:07:29.000Z","dependencies_parsed_at":"2024-05-29T02:01:07.324Z","dependency_job_id":"364ab328-bc80-428e-89c9-331a2d128056","html_url":"https://github.com/THD-AI-2023/Devablos-Project-V2","commit_stats":null,"previous_names":["thd-ai-2023/devablos-project-v2"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/THD-AI-2023%2FDevablos-Project-V2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/THD-AI-2023%2FDevablos-Project-V2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/THD-AI-2023%2FDevablos-Project-V2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/THD-AI-2023%2FDevablos-Project-V2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/THD-AI-2023","download_url":"https://codeload.github.com/THD-AI-2023/Devablos-Project-V2/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":237915443,"owners_count":19386727,"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":["docker","docker-compose","fullstack","gpt-assistant","javascript","open-source","openai-api","react","webapp"],"created_at":"2024-12-16T21:38:37.115Z","updated_at":"2025-10-24T05:30:45.857Z","avatar_url":"https://github.com/THD-AI-2023.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Devablos Project V2\n\nWelcome to the Devablos Project V2, a full-stack chatbot application leveraging React for the frontend and Node.js with Express for the backend. This project integrates WebSocket for real-time interactions and uses OpenAI's API for advanced functionalities.\n\n## Key Features\n\n- **Real-Time Communication**: WebSocket and Secure WebSocket (WSS) integration.\n- **SSL Security**: Configured SSL certificates for HTTPS communication.\n- **Weather Information**: Fetch and display weather conditions using OpenWeather API.\n- **Flexible Protocols**: Toggle between WebSocket and HTTPS directly from the UI.\n\nVisit our live application at [Devablos V2](https://devablos-v2.azurewebsites.net/) to see it in action.\n\n![image](https://github.com/THD-AI-2023/Devablos-Project-V2/assets/66517969/bff44cc1-0a48-4b75-8cb4-3526dd7b043f)\n\n## Directory Structure\n\n```txt\ndevablos-project-v2/\n├── client/\n│   ├── public/\n│   ├── src/\n│   ├── Dockerfile\n│   ├── package.json\n│   └── README.md\n├── server/\n│   ├── src/\n│   ├── Dockerfile\n│   ├── package.json\n│   └── README.md\n├── .dockerignore\n├── docker-compose.yml\n├── .gitignore\n├── CODE_OF_CONDUCT.md\n├── LICENSE\n└── README.md\n```\n\n## Quick Start\n\n### Prerequisites\n\n- Docker and Docker Compose\n- Node.js and npm\n\n### Environment Setup\n\nBefore running the application, you need to set up the environment variables and SSL certificates:\n\n1. **Environment Variables**:\n   - Copy `.env.example` to `.env` in both the `client/` and `server/` directories.\n   - Modify the `.env` files to include your specific configurations, such as API keys and other necessary settings.\n\n2. **SSL Certificates**:\n   - Use `mkcert` to create SSL certificates. If `mkcert` is not installed, [install it](https://github.com/FiloSottile/mkcert) first.\n   - Run the following commands to generate certificates:\n\n     ```bash\n     mkcert -install\n     mkdir -p .certs .private\n     mkcert -key-file ./.private/localhost-key.pem -cert-file ./.certs/localhost.pem localhost 127.0.0.1 ::1\n     ```\n\n### Running the Application\n\nAfter setting up the environment variables and SSL certificates, you can start the application using Docker Compose:\n\n```bash\ndocker-compose up --build\n```\n\nThis command builds the Docker images and starts the containers defined in `docker-compose.yml`. Check the services are running:\n\n- Frontend at: `http://localhost:3000`\n- Backend at: `http://localhost:5000`\n\n## Documentation\n\nFor more details on project setup, features, and contributions, refer to the specific README files in the `client` and `server` directories:\n\n- [Client README](client/README.md)\n- [Server README](server/README.md)\n\n## Contributing\n\nContributions are welcome! Please read our [Code of Conduct](CODE_OF_CONDUCT.md) before contributing to help maintain a friendly and inclusive environment.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthd-ai-2023%2Fdevablos-project-v2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthd-ai-2023%2Fdevablos-project-v2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthd-ai-2023%2Fdevablos-project-v2/lists"}