{"id":20714246,"url":"https://github.com/theogrammer/sunrise","last_synced_at":"2026-03-07T20:31:34.696Z","repository":{"id":89990197,"uuid":"556073735","full_name":"theogrammer/sunrise","owner":"theogrammer","description":null,"archived":false,"fork":false,"pushed_at":"2022-10-23T02:03:44.000Z","size":42,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-11T06:50:03.309Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/theogrammer.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":"2022-10-23T01:56:33.000Z","updated_at":"2022-10-23T01:56:33.000Z","dependencies_parsed_at":"2023-05-30T19:45:20.003Z","dependency_job_id":null,"html_url":"https://github.com/theogrammer/sunrise","commit_stats":null,"previous_names":["theogrammer/sunrise"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/theogrammer/sunrise","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theogrammer%2Fsunrise","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theogrammer%2Fsunrise/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theogrammer%2Fsunrise/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theogrammer%2Fsunrise/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/theogrammer","download_url":"https://codeload.github.com/theogrammer/sunrise/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theogrammer%2Fsunrise/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30229741,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T19:01:10.287Z","status":"ssl_error","status_checked_at":"2026-03-07T18:59:58.103Z","response_time":53,"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":[],"created_at":"2024-11-17T02:30:28.796Z","updated_at":"2026-03-07T20:31:34.631Z","avatar_url":"https://github.com/theogrammer.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ch1\u003e Sunrise \u003c/h1\u003e\n\u003c/p\u003e\n\n[Sunrise](https://amplication.com/) is an open‑source development platform. It helps professional Node.js developers build quality Node.js applications without spending time on repetitive coding tasks.\n\nSunrise auto-generates backend apps built with TypeScript and Node.js, and a client built with React.\n\n# Tools\n\nAmplication provides the following features:\n\n- Production-ready APIs\n- Data Model\n- Role Based Access Control\n- Microservice Support\n- Continuous GitHub Sync\n- TypeScript and Node.js Source Code\n- Plugin System\n- Monorepo or Polyrepo\n- Custom Code\n- Ready-to-deploy-app\n- Admin UI\n- Amplication console \u0026 CLI\n\n# Requirements\n\nYou can get started with Amplication immediately on the Amplication Cloud. \n\nAlternatively you can set up a local development environment.\n\n\n# Prototype \n\n- Todo Application using Amplication and Angular. [Click here to access](https://docs.amplication.com/docs/tutorials/angular-todos/)\n- Todo Application using Amplication and React. [Click here to access](https://docs.amplication.com/docs/tutorials/react-todos/)\n\n# Plan\n\nLaunch Amplication from [app.amplication.com](http://app.amplication.com/)\n\n## Development Environment (Local)\n\n### System Requirements\n\n:bulb: Before you begin, make sure you have the following installed:\n\n- [Node.js v16 or above](https://nodejs.org/en/download/)\n- [Docker](https://docs.docker.com/desktop/)\n- [Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git/)\n\n\n### Initializing all the packages\n\nAmplication is using a monorepo with multiple packages. To initialize all the packages on a local development environment, including running a docker image for the DB and seeding the DB.\n\n1. Execute the following commands in the project root folder:\n\n```jsx\nnpm install\nnpm run setup:dev\n```\nThis will install all the required dependencies, run the necessary scripts and init a Docker-based Postgres server.\n\n2. Go to `.../packages/amplication-server` and execute the following command:\n\n```jsx\nnpm run start\n```\n\n3. Go to `.../packages/amplication-client` and execute the following command:\n\n```jsx\nnpm run start\n```\n\n### Setting Up Amplication Manually\n\nYou can use a manual step-by-step approach to set up Amplication in a local development environment. To do so, you should follow the following instructions for **Setting Up Amplication Server**, and **Setting Up Amplication Client**.\n\n#### Setting up [Amplication Server](https://github.com/amplication/amplication/blob/master/packages/amplication-server/README.md)\n\nAmplication Server is the main component of the platform that provides all the core functionality to design and create low-code applications.\nThe server exposes a GraphQL API for all actions. The server is built with the following awesome open-source technologies: Node.js, NestJS, Prisma over PostgreSQL, GraphQL API, and many more...\n\n#### Setting Up [Amplication Client](https://github.com/amplication/amplication/blob/master/packages/amplication-client/README.md)\n\nAmplication Client is the front end of the platform that provides you with an easy-to-drive UI for building your next low-code application.\nThe client is based on React, Apollo client, Primer components, React Material Web Components, Formik, and more.\n\n# Version 1\n\nAmplication is currently in its version 1.  This is the first major release of Amplication with enterprise-grade production readiness \u0026 scale. In this version, we have introduced multiple new features and enhanced the existing ones. The feature set is listed above in the [Features](#features) section.\n\n## Support\n\nAsk your questions and participate in discussions on Amplication-related and web-dev topics at the Amplication Discord channel. \n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheogrammer%2Fsunrise","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftheogrammer%2Fsunrise","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheogrammer%2Fsunrise/lists"}