{"id":42664656,"url":"https://github.com/code4romania/website-factory","last_synced_at":"2026-01-29T10:01:45.344Z","repository":{"id":37721387,"uuid":"382650348","full_name":"code4romania/website-factory","owner":"code4romania","description":null,"archived":false,"fork":false,"pushed_at":"2025-11-14T12:31:11.000Z","size":15229,"stargazers_count":22,"open_issues_count":61,"forks_count":18,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-11-14T13:22:46.450Z","etag":null,"topics":["hacktoberfest","laravel","tailwindcss","website-builder"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/code4romania.png","metadata":{"funding":{"github":"code4romania","custom":["https://code4.ro/en/donate/"]},"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-07-03T15:36:40.000Z","updated_at":"2025-11-14T12:29:59.000Z","dependencies_parsed_at":"2023-09-27T19:45:01.385Z","dependency_job_id":"dfc6fbb2-bac9-41f5-941e-d4e387a3f8fb","html_url":"https://github.com/code4romania/website-factory","commit_stats":null,"previous_names":[],"tags_count":80,"template":false,"template_full_name":null,"purl":"pkg:github/code4romania/website-factory","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code4romania%2Fwebsite-factory","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code4romania%2Fwebsite-factory/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code4romania%2Fwebsite-factory/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code4romania%2Fwebsite-factory/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/code4romania","download_url":"https://codeload.github.com/code4romania/website-factory/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code4romania%2Fwebsite-factory/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28875445,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-29T09:47:23.353Z","status":"ssl_error","status_checked_at":"2026-01-29T09:47:19.357Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["hacktoberfest","laravel","tailwindcss","website-builder"],"created_at":"2026-01-29T10:01:44.645Z","updated_at":"2026-01-29T10:01:45.330Z","avatar_url":"https://github.com/code4romania.png","language":"PHP","funding_links":["https://github.com/sponsors/code4romania","https://code4.ro/en/donate/"],"categories":[],"sub_categories":[],"readme":"# Website Factory\n\n[![GitHub contributors](https://img.shields.io/github/contributors/code4romania/website-factory.svg?style=for-the-badge)](https://github.com/code4romania/website-factory/graphs/contributors) [![GitHub last commit](https://img.shields.io/github/last-commit/code4romania/website-factory.svg?style=for-the-badge)](https://github.com/code4romania/website-factory/commits/master) [![License: MPL 2.0](https://img.shields.io/badge/license-MPL%202.0-brightgreen.svg?style=for-the-badge)](https://opensource.org/licenses/MPL-2.0)\n\nCode4ro presentation website\n\n[Contributing](#contributing) | [Built with](#built-with) | [Development](#development) | [Deployment](#deployment) | [Feedback](#feedback) | [License](#license) | [About Code for Romania](#about-code-for-romania)\n\n## Contributing\n\nThis project is built by amazing volunteers and you can be one of them! Here's a list of ways in [which you can contribute to this project](https://github.com/code4romania/.github/blob/main/CONTRIBUTING.md).\n\n## Built with\n-   Laravel\n-   Tailwind CSS\n-   Inertia.js\n-   Vue.js\n-   Alpine.js\n\n### Requirements\n-   PHP 8.2\n-   Nginx\n-   PostgreSQL 14+\n\n## Development\nThis project uses Laravel Sail, Laravel's default Docker development environment.\n\nAfter running the [initial setup](#initial-setup), run this command to start up the environment:\n```sh\n./vendor/bin/sail up -d\n```\n\nand then this command to rebuild the css / js assets on change:\n\n```sh\n./vendor/bin/sail npm run dev\n```\n\n### Initial setup\n\n1. Install composer dependencies\n```sh\ndocker run --rm -v ${PWD}:/app -w /app composer:latest composer install --ignore-platform-reqs --no-scripts --no-interaction --prefer-dist --optimize-autoloader\n```\n\n2. Copy the environment variables file\n```sh\ncp .env.example .env\n```\n\n3. Start the application\n```sh\n./vendor/bin/sail up -d\n```\n\n4. Install npm dependencies\n```sh\n./vendor/bin/sail npm ci\n```\n\n5. Build the frontend\n```sh\n./vendor/bin/sail npm run build\n```\n\n6. Generate the app secret key\n```sh\n./vendor/bin/sail artisan key:generate\n```\n\n7. Migrate and seed the database\n```sh\n./vendor/bin/sail artisan migrate:fresh --seed\n```\n\n8. Access the admin panel in your browser at https://localhost:8080/admin and log in with the default credentials:\n   - Email: `admin@example.com`\n   - Password: `password`\n\nFor more information on Laravel Sail, check out the [official documentation](https://laravel.com/docs/10.x/sail).\n\n## Deployment\n\nThe fastest way to deploy Website Factory is by using our first-party [Docker image](https://hub.docker.com/r/code4romania/website-factory).\n\n### Prerequisites\n\n#### Generate an application key\n\nBefore deploying Website Factory, make sure you generate a valid application key. If you are not sure what an application key is, you can read more about it here: [`APP_KEY` And You](https://tighten.com/blog/app-key-and-you/) blog post on Tighten's website.\n\nTo generate an application key, you can run the following command in your terminal.\n\n```sh\ndocker run --rm -it code4romania/website-factory php artisan key:generate --show\n```\n\nThe generated application key will look like this:\n\n```\nbase64:yEtz1eacKMwq0iVT5BUjMMvcn4OAD7QpCgz1yDoXroE=\n```\n\n### Running the image\n\nDownload the [example `docker-compose.yml`](docs/examples/docker-compose.yml) and configure the environment variables. Here's where you use the `APP_KEY` generated earlier. After you're done, save the file and run it with:\n\n```sh\ndocker-compose up -d\n```\n\nYou should now be able to access your instance admin area by visiting `\u003cyour-ip\u003e:8080/admin` and logging in with the `ADMIN_EMAIL` and `ADMIN_PASSWORD` you specified in the configuration.\n\n\n## Deployment on AWS / Microsoft Azure with terraform\n\nWe maintain two separate terraform repositories for Website Factory. To learn more about the infrastructure we provisioned for Website Factory on these cloud providers, please check their respective repositories:\n- https://github.com/code4romania/terraform-aws-website-factory\n- https://github.com/code4romania/terraform-azure-website-factory\n\n\n## Feedback\n\n-   Request a new feature on GitHub.\n-   Vote for popular feature requests.\n-   File a bug in GitHub Issues.\n-   Email us with other feedback contact@code4.ro\n\n## License\n\nThis project is licensed under the MPL 2.0 License - see the [LICENSE](LICENSE) file for details\n\n## About Code for Romania\n\nStarted in 2016, Code for Romania is a civic tech NGO, official member of the Code for All network. We have a community of over 500 volunteers (developers, ux/ui, communications, data scientists, graphic designers, devops, it security and more) who work pro-bono for developing digital solutions to solve social problems. #techforsocialgood. If you want to learn more details about our projects [visit our site](https://www.code4.ro/en/) or if you want to talk to one of our staff members, please e-mail us at contact@code4.ro.\n\nLast, but not least, we rely on donations to ensure the infrastructure, logistics and management of our community that is widely spread across 11 timezones, coding for social change to make Romania and the world a better place. If you want to support us, [you can do it here](https://code4.ro/en/donate/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcode4romania%2Fwebsite-factory","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcode4romania%2Fwebsite-factory","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcode4romania%2Fwebsite-factory/lists"}