{"id":40265798,"url":"https://github.com/andriawan/warteg.andriawan.com","last_synced_at":"2026-01-20T02:45:53.453Z","repository":{"id":223795180,"uuid":"760997246","full_name":"andriawan/warteg.andriawan.com","owner":"andriawan","description":"Warteg apps made with Angular 17","archived":false,"fork":false,"pushed_at":"2024-07-05T01:16:38.000Z","size":579,"stargazers_count":1,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-31T04:49:18.241Z","etag":null,"topics":["angular"],"latest_commit_sha":null,"homepage":"https://warteg.andriawan.com","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/andriawan.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":"2024-02-21T03:28:38.000Z","updated_at":"2024-07-05T01:16:42.000Z","dependencies_parsed_at":"2024-06-23T07:46:32.363Z","dependency_job_id":"9e56e293-023d-45b1-91ff-043c3bdf8f23","html_url":"https://github.com/andriawan/warteg.andriawan.com","commit_stats":null,"previous_names":["andriawan/warteg.andriawan.com"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/andriawan/warteg.andriawan.com","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andriawan%2Fwarteg.andriawan.com","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andriawan%2Fwarteg.andriawan.com/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andriawan%2Fwarteg.andriawan.com/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andriawan%2Fwarteg.andriawan.com/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/andriawan","download_url":"https://codeload.github.com/andriawan/warteg.andriawan.com/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andriawan%2Fwarteg.andriawan.com/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28594958,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T02:08:49.799Z","status":"ssl_error","status_checked_at":"2026-01-20T02:08:44.148Z","response_time":117,"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":["angular"],"created_at":"2026-01-20T02:45:52.758Z","updated_at":"2026-01-20T02:45:53.447Z","avatar_url":"https://github.com/andriawan.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# WartegAndriawanCom\n\nThis project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.2.0.\n\n## How To Run Development Mode ( first time )\n  - clone this repo\n  - npm install\n  - cp .env.example .env\n  - adjust the settings in .env file according to your device environment like what port your postgre db run , db name etc\n  - apply db migrations files ( generate / update table in db ) \n    - `npm run knex migrate:latest`\n  - apply db seeder ( insert db for default user  , data , etc ) \n    - `npm run knex seed:run`\n  - if you are on linux os for running angular FE ( SSR ) dan server api dev mode you can run this \n    - `npm run start:all` \n    - or `npm run start:all:no-reload` ( if you dont want your browser auto refresh after changes in code is compiled , manually refresh browser )\n  - if you are on window os , you need to run 2 process\n    - `npm run serve:dev` running api server.dev.ts\n    - `npm start` running angular development mode\n\n## How To Production Mode\n  - in VPS\n    - `npm run build`\n    - `pm2 start pm2.config.json`\n\n## Development server\n\nRun `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of the source files.\n\n## Code scaffolding\n\nRun `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.\n\n## Build\n\nRun `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.\n\n## Running unit tests\n\nRun `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).\n\n## Running end-to-end tests\n\nRun `ng e2e` to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.\n\n## Further help\n\nTo get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.\n\n\n## Knex\n  - Migration\n    - Make migration\n      - npm run knex migrate:make create_example_table\n\n    - Applying migration ( update database )\n      - npm run knex migrate:latest\n      - npm run knex migrate:up\n\n    - Rolling Back\n      - npm run knex migrate:rollback -- --all\n      - npm run knex migrate:rollback\n\n  - Seed\n    - Make seed\n      - npm run knex seed:make required_data\n\n    - Applying seed ( insert data to database )\n      - npm run knex seed:run\n      - npm run knex seed:run -- --specific=seed-filename.ts --specific=another-seed-filename.ts\n\n  - Documentation\n    - https://knexjs.org/guide/query-builder.html\n    \n## ENV\n  - Generate Key ( example: secret key for security )\n   - openssl rand -base64 43\n\n## Note\n- [Icon list](https://jossef.github.io/material-design-icons-iconfont/)\n\n- This document note was created when Angular was on version 17.2 \u0026 18.0 ( optional for development )\n  - [Dirty Patch SSR from development mode: ng serve until angular team solve this in the future](./docs/ng-serve.md)\n\n- [angular.json](./angular.json)\n  ```json\n  /**\n  * angular.json\n  * some library need to be excluded while compiling ( building ) for production\n  */\n  \"externalDependencies\": [\n    \"knex\"\n  ],\n  ```\n\n  ```json\n  /**\n  * angular.json\n  * some library not support ESM , only commonjs . \n  * this area will whitelist them but remember some library might be a problem for performance by doing so\n  */\n  \"allowedCommonJsDependencies\": [\n    \"dotenv\",\"dotenv-expand\"\n  ]\n  ```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandriawan%2Fwarteg.andriawan.com","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandriawan%2Fwarteg.andriawan.com","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandriawan%2Fwarteg.andriawan.com/lists"}