{"id":23870128,"url":"https://github.com/diki-haryadi/environment-dev-setup","last_synced_at":"2026-06-14T01:31:58.925Z","repository":{"id":270771366,"uuid":"911412381","full_name":"diki-haryadi/Environment-Dev-Setup","owner":"diki-haryadi","description":"A containerized development environment setup featuring Brave Browser with VNC access, perfect for remote development and testing.","archived":false,"fork":false,"pushed_at":"2025-01-10T03:55:58.000Z","size":5,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-13T01:20:43.936Z","etag":null,"topics":["development","docker","evironment","setup","template"],"latest_commit_sha":null,"homepage":"","language":"Makefile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/diki-haryadi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"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":"2025-01-03T00:44:57.000Z","updated_at":"2025-01-10T03:56:01.000Z","dependencies_parsed_at":"2025-01-03T01:30:20.809Z","dependency_job_id":"9b817e01-2b0d-492c-aa5a-e963b65788a5","html_url":"https://github.com/diki-haryadi/Environment-Dev-Setup","commit_stats":null,"previous_names":["diki-haryadi/environment-dev-setup"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/diki-haryadi/Environment-Dev-Setup","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diki-haryadi%2FEnvironment-Dev-Setup","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diki-haryadi%2FEnvironment-Dev-Setup/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diki-haryadi%2FEnvironment-Dev-Setup/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diki-haryadi%2FEnvironment-Dev-Setup/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/diki-haryadi","download_url":"https://codeload.github.com/diki-haryadi/Environment-Dev-Setup/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diki-haryadi%2FEnvironment-Dev-Setup/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34306772,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-13T02:00:06.617Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["development","docker","evironment","setup","template"],"created_at":"2025-01-03T13:52:44.918Z","updated_at":"2026-06-14T01:31:58.912Z","avatar_url":"https://github.com/diki-haryadi.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Development Environment Setup\n\nA containerized development environment setup featuring Brave Browser with VNC access, perfect for remote development and testing.\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![Docker](https://img.shields.io/badge/Docker-Supported-blue.svg)](https://www.docker.com/)\n\n## 🚀 Features\n\n- Dockerized Brave Browser setup\n- VNC server for remote access\n- noVNC for browser-based access\n- Supervisor process management\n- Fluxbox window manager\n- Easy configuration and customization\n- Cross-platform compatibility\n\n## 📋 Prerequisites\n\n- Docker installed on your system\n- Docker Compose (optional but recommended)\n- VNC Viewer (optional for VNC access)\n\n## 🛠️ Installation\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/yourusername/dev-environment-setup.git\ncd dev-environment-setup\n```\n\n2. Build and run using Docker Compose:\n```bash\ndocker-compose up -d --build\n```\n\nOr using Docker directly:\n```bash\ndocker build -t brave-browser .\ndocker run -d -p 5900:5900 -p 6080:6080 --name brave-container brave-browser\n```\n\n## 🔗 Accessing the Environment\n\n### Via Web Browser (noVNC)\n- Open your browser and navigate to: `http://localhost:6080`\n- No additional software required\n\n### Via VNC Client\n- Connect to: `localhost:5900`\n- Default password: `vncpass123`\n\n## 🔧 Configuration\n\n### Customizing VNC Password\nEdit the `docker-compose.yml` file:\n```yaml\nenvironment:\n  - VNC_PASSWORD=your_new_password\n```\n\n### Modifying Screen Resolution\nEdit the `supervisord.conf` file:\n```ini\n[program:xvfb]\ncommand=/usr/bin/Xvfb :99 -screen 0 1920x1080x24\n```\n\n## 📦 Project Structure\n\n```\n.\n├── Dockerfile\n├── docker-compose.yml\n├── supervisord.conf\n└── README.md\n```\n\n## 🪄 Usage Examples\n\n1. Running with persistent storage:\n```bash\ndocker run -d \\\n  -p 5900:5900 \\\n  -p 6080:6080 \\\n  -v /path/to/downloads:/root/Downloads \\\n  brave-browser\n```\n\n2. Running with custom resolution:\n```bash\ndocker run -d \\\n  -p 5900:5900 \\\n  -p 6080:6080 \\\n  -e DISPLAY_WIDTH=1600 \\\n  -e DISPLAY_HEIGHT=900 \\\n  brave-browser\n```\n\n## 🔍 Troubleshooting\n\n### Common Issues\n\n1. VNC Connection Failed\n```bash\n# Check if container is running\ndocker ps\n\n# Check container logs\ndocker logs brave-container\n```\n\n2. Port Conflicts\n```bash\n# Check if ports are in use\nlsof -i :5900\nlsof -i :6080\n```\n\n## 🤝 Contributing\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\n## 📄 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## 🙏 Acknowledgments\n\n- [Brave Browser](https://brave.com/)\n- [noVNC](https://novnc.com/)\n- [Docker](https://www.docker.com/)\n- [Supervisor](http://supervisord.org/)\n\n## 📞 Support\n\nFor support, please open an issue in the GitHub repository or contact the maintainers.\n\n## 🔄 Updates and Maintenance\n\nThis project is actively maintained. Please check the releases page for updates.\n\n---\n\nMade with\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdiki-haryadi%2Fenvironment-dev-setup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdiki-haryadi%2Fenvironment-dev-setup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdiki-haryadi%2Fenvironment-dev-setup/lists"}