{"id":19112751,"url":"https://github.com/restorecommerce/console","last_synced_at":"2025-08-25T14:06:46.726Z","repository":{"id":35923923,"uuid":"220237945","full_name":"restorecommerce/console","owner":"restorecommerce","description":"The sales front end for Restore Commerce","archived":false,"fork":false,"pushed_at":"2025-08-19T11:38:45.000Z","size":4828,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-08-19T13:21:50.467Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/restorecommerce.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,"zenodo":null}},"created_at":"2019-11-07T12:59:58.000Z","updated_at":"2025-08-19T11:38:48.000Z","dependencies_parsed_at":"2022-09-12T20:13:51.613Z","dependency_job_id":"9f38b11a-03e0-4fd4-9844-c625b5196674","html_url":"https://github.com/restorecommerce/console","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/restorecommerce/console","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/restorecommerce%2Fconsole","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/restorecommerce%2Fconsole/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/restorecommerce%2Fconsole/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/restorecommerce%2Fconsole/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/restorecommerce","download_url":"https://codeload.github.com/restorecommerce/console/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/restorecommerce%2Fconsole/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272077690,"owners_count":24869288,"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","status":"online","status_checked_at":"2025-08-25T02:00:12.092Z","response_time":1107,"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":[],"created_at":"2024-11-09T04:34:01.299Z","updated_at":"2025-08-25T14:06:46.696Z","avatar_url":"https://github.com/restorecommerce.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Console\n\nAdministrative Console for the [Restorecommerce](https://about.restorecommerce.io/)\ne-commerce suite based on [Angular](https://angular.io/).\n\n**Live demo at [console.restorecommerce.io](https://console.restorecommerce.io/)**.\n\n**[Demo Accosts](https://github.com/restorecommerce/data/blob/master/datasets/demo-shop/data/seed-data/users.yaml)**\n\n## Goals and Features\n\n- Performant by default\n- Internationalization\n- Multi tenancy\n- Responsive\n- UI Components\n- Theming\n\n## Intended Use\n\nThe console is the daily companion of the sales admin and store admin to process orders and manager the offers.\nThe goal is to make it as convenient and efficient as possible for these tasks.\n\n## Development\n\n### Install\n\nRun `npm i --legacy-peer-deps`\n\n### Code Scaffolding\n\nTo generate code using Nx Angular, you can utilize the following commands:\n\n- Generate a component: Run `npx nx g @nx/angular:component` component-name to generate a new component.\n- Generate a directive: Use `npx nx g @nx/angular:directive` directive-name to generate a new directive.\n- Generate a pipe: Execute `npx nx g @nx/angular:pipe` pipe-name to generate a new pipe.\n- Generate a service: Run `npx nx g @nx/angular:service` service-name to generate a new service.\n- Generate a class: Use `npx nx g @nx/angular:class` class-name to generate a new class.\n- Generate a guard: Execute `npx nx g @nx/angular:guard` guard-name to generate a new guard.\n- Generate an interface: Use `npx nx g @nx/angular:interface` interface-name to generate a new interface.\n- Generate an enum: Execute `npx nx g @nx/angular:enum` enum-name to generate a new enum.\n- Generate a module: Run `npx nx g @nx/angular:module` module-name to generate a new module.\n\nFor each command, replace component-name, directive-name, and so on, with the desired names for your code artifacts.\n\nThese commands utilize the @nx/angular plugin provided by Nx to generate the respective code files. Nx Angular follows best practices and conventions, making it easier to generate and manage your Angular code. For more information, you can visit the [Nx Angular documentation](https://nx.dev/packages/angular) for detailed instructions and examples.\n\n### GraphQL Code Generation\n\nTo generate code from GraphQL schemas, you can utilize the following command: `npm run console:graphql:generate`. This command will generate TypeScript types and Angular services for GraphQL schemas and operations located in `./packages/modules/` with extension `.gql`.\n\n### Set Environment Variables\n\nCreate a `.env` file in the root directory of the project with the following content:\n\n```bash\n# Environment variables\nCONSOLE_API_URL=http://127.0.0.1:5000\nCONSOLE_OIDC_KEY=VEVTVF9DTElFTlRfSUQ6VEVTVF9DTElFTlRfU0VDUkVU=\n```\n\nThe `CONSOLE_OIDC_KEY` can be built like so: `echo 'id:secret' | base64 -w0`\n\n### Development Server\n\nTo start the development server, run `npm run console:serve:dev`. Navigate to `http://localhost:4200/`. The app will automatically reload if you make any changes to the source files.\n\n### Build\n\nTo build the project for production, run npm `run console:build:prod`. The build artifacts will be stored in the `dist/` directory.\n\n### Running Linting\n\nRun `npm run console:lint` to execute linting using [TSLint](https://palantir.github.io/tslint/) and [ESLint](https://eslint.org/) .\n\n### Running Unit Tests\n\nRun `npm run console:test` to execute the unit tests using [Jest](https://jestjs.io/).\n\n### Running End-to-end Tests\n\nRun `npm run console:e2e` to execute the end-to-end tests using [Cypress](https://www.cypress.io/).\n\n### Additional Help\n\nFor more information and help regarding Nx Angular, use `npm run console:list` to list all available local workspace plugins, installed plugins, and their associated commands.\n\nTo find out more about a specific plugin, use the command \"`npx nx list [plugin name]`\".\n\nYou can also visit the [Nx Angular documentation](https://nx.dev/packages/angular) for more details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frestorecommerce%2Fconsole","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frestorecommerce%2Fconsole","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frestorecommerce%2Fconsole/lists"}