{"id":20630024,"url":"https://github.com/mackentoch/monsieur-robot","last_synced_at":"2025-10-03T20:16:11.703Z","repository":{"id":153226325,"uuid":"114993649","full_name":"MacKentoch/monsieur-robot","owner":"MacKentoch","description":null,"archived":false,"fork":false,"pushed_at":"2018-04-30T12:35:33.000Z","size":805,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-11T12:50:18.498Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/MacKentoch.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2017-12-21T10:29:22.000Z","updated_at":"2018-04-30T12:35:35.000Z","dependencies_parsed_at":"2024-07-17T06:00:46.140Z","dependency_job_id":null,"html_url":"https://github.com/MacKentoch/monsieur-robot","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MacKentoch/monsieur-robot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MacKentoch%2Fmonsieur-robot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MacKentoch%2Fmonsieur-robot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MacKentoch%2Fmonsieur-robot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MacKentoch%2Fmonsieur-robot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MacKentoch","download_url":"https://codeload.github.com/MacKentoch/monsieur-robot/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MacKentoch%2Fmonsieur-robot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278219843,"owners_count":25950363,"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-10-03T02:00:06.070Z","response_time":53,"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-16T14:06:41.348Z","updated_at":"2025-10-03T20:16:11.698Z","avatar_url":"https://github.com/MacKentoch.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Monsieur Robot\n\n## Prerequisites\n\n- NodeJS 8.x\n\u003e Please don't miss this requirement. This is important!\n\n## Detailed Content\n\n\u003cdetails\u003e\n  \u003csummary\u003eFront\u003c/summary\u003e\n\n  - Next js (4.x+ [github :link:](https://github.com/zeit/next.js))\n  - React JS (16.x+ - [github :link:](https://github.com/facebook/react))\n  - redux (*as your application grows managing state will be a serious concern, save pain with Redux*)\n  - redux-persist (*simplifies your NextJS state share between pages* [github :link:](https://github.com/rt2zz/redux-persist))\n  - localForage\n  - react-redux (*Redux is not specific to ReactJS, you could easily use it with Angular2 for instance*)\n  - redux-thunk (*simple and does the job*)\n  - next-redux-wrapper\n  - redux-devtools-extension ([github :link:](https://github.com/zalmoxisus/redux-devtools-extension#redux-devtools-extension))\n  - material UI 1.x beta ([github :link:](https://github.com/callemall/material-ui/tree/v1-beta))\n  - axios ([github :link:](https://github.com/mzabriskie/axios) *Why: simple, complete, isomorphic ...*)\n\n\u003c/details\u003e\n\n\n\u003cdetails\u003e\n\n  \u003csummary\u003eTool chain\u003c/summary\u003e\n  - Next js (4.x+ [github :link:](https://github.com/zeit/next.js))\n  - Flow JS types\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\n  \u003csummary\u003efav icon\u003c/summary\u003e\n\n  - favicons generated by [realfavicongenerator](https://realfavicongenerator.net/)\n\n\u003c/details\u003e\n\n## Howto\n\n### Database\n\n\n#### Install Postgresql\n\nFollow [database creation README](./db/README.md)\n\n#### Create database\n\n```bash\nnpm run db:create\n```\n\n*if it already exists and you want to reset it, drop database:*\n\n```bash\nnpm run db:drop\n```\n\n\n#### Load initial data\n\n```bash\nnpm run db:load\n```\n\n\n#### Run database server\n\n```bash\nnpm run db:start\n```\n\n### Application (website)\n\n#### Clone this repository\n\n  ```bash\n  git clone https://github.com/MacKentoch/monsieur-robot.git\n  ```\n\n#### Install dependencies\n\n```bash\nnpm install\n```\n\n#### dev server (for dev only - with hot-reload - do not use in production)\n\n```bash\nnpm run dev\n```\n\nNOTE: ensure db server is already running (`npm run db:start`)\n\n#### build bundle (for production)\n\n  ```bash\n  npm run build\n  ```\n\n#### start server (for production)\n\n*NOTE:* ensure you built first before starting.\n\n  ```bash\n  npm run start\n  ```\n\n  NOTE: ensure db server is already running (`npm run db:start`)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmackentoch%2Fmonsieur-robot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmackentoch%2Fmonsieur-robot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmackentoch%2Fmonsieur-robot/lists"}