{"id":42503702,"url":"https://github.com/dataforgoodfr/offseason_ogre","last_synced_at":"2026-01-28T13:37:02.111Z","repository":{"id":37488629,"uuid":"414609817","full_name":"dataforgoodfr/offseason_ogre","owner":"dataforgoodfr","description":"Ogre is a recreational workshop to help understand orders of magnitude of energies and what it implies for the ecological transition.","archived":false,"fork":false,"pushed_at":"2023-11-10T23:49:01.000Z","size":5842,"stargazers_count":14,"open_issues_count":6,"forks_count":2,"subscribers_count":5,"default_branch":"develop","last_synced_at":"2025-12-01T18:04:54.946Z","etag":null,"topics":["climate-change","energy","serious-game"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dataforgoodfr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2021-10-07T13:20:46.000Z","updated_at":"2023-07-23T14:57:20.000Z","dependencies_parsed_at":"2023-09-24T09:17:10.658Z","dependency_job_id":"a64a5bbf-11b4-45de-8fab-a08cba0fe1cd","html_url":"https://github.com/dataforgoodfr/offseason_ogre","commit_stats":{"total_commits":959,"total_committers":23,"mean_commits":41.69565217391305,"dds":0.5318039624608968,"last_synced_commit":"68d9861145384e3d7d2c5ccbaccc813c9790d85d"},"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/dataforgoodfr/offseason_ogre","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dataforgoodfr%2Foffseason_ogre","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dataforgoodfr%2Foffseason_ogre/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dataforgoodfr%2Foffseason_ogre/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dataforgoodfr%2Foffseason_ogre/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dataforgoodfr","download_url":"https://codeload.github.com/dataforgoodfr/offseason_ogre/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dataforgoodfr%2Foffseason_ogre/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28846053,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T13:02:32.985Z","status":"ssl_error","status_checked_at":"2026-01-28T13:02:04.945Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["climate-change","energy","serious-game"],"created_at":"2026-01-28T13:36:58.200Z","updated_at":"2026-01-28T13:37:02.096Z","avatar_url":"https://github.com/dataforgoodfr.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# OGRE\n\n## OGRE workshop presentation\n\nOgre is a recreational workshop to help understand orders of magnitude of energies and what it implies for the ecological transition.\n\nhttps://laconsciencedesetudiants.fr/atelier-ogre/\n\n## Goal of this project\n\nOur goal is to develop a web application to digitalize OGRE's workshop. It will improve the user experience and allow to scale up the reach of the workshop.\n\n## Tech\n\nOGRE uses a number of open source projects to work properly:\n\n- Backend\n  - **Node.js** - a JavaScript runtime\n  - **Express** - a web framework for node.js\n- Frontend\n  - **React** - a JavaScript library for building user interfaces\n\n## Development\n\nNode, yarn and Docker must be installed locally.\n\n1. Run \"yarn env:default\" from root, it will set then default values in the file at /packages/server/.env\n2. Run \"yarn install\" from root, it will install all dependencies in all workspaces\n3. Run \"yarn prepare\" to initialize husky. \n4. Run \"yarn db:up\" from root, it will launch a container running a postGre database\n5. Run \"yarn db:migrate\" from root, it creates the tables in the database (must be run on a new database or after a schema change)\n6. Run \"yarn workspace ogre-server db:generate\" to generate the Prisma client from schema.\n7. Run \"yarn workspace ogre-server dev\" to launch server\n8. In another shell run \"yarn workspace ogre-client dev\" to launch client\n\n## Deployment\n\nThe app can be deployed to heroku.\n\nThe \"start\" and \"build\" script are executed by default: https://help.heroku.com/P5IMU3MP/heroku-node-js-build-script-change-faq\n\nA postGreSQL database is required, the connection string must be set as DATABASE_URL in the secrets.\n\nA procfile is needed to run the PRISMA migrations.\n\nhttps://github.com/prisma/prisma-examples/tree/latest/deployment-platforms/heroku\nhttps://www.prisma.io/docs/guides/deployment/deployment-guides/deploying-to-heroku\n\n### Testing the production build locally\n\nNode, yarn and Docker must be installed locally.\n\n1. Run \"yarn env:default\" from root, it will set default .env values in server\n2. Run \"yarn install\" from root, it will install all dependencies in all workspaces\n3. Run \"yarn build\" from root, it will transpile all typescript in all workspaces\n4. Run \"yarn db:up\" from root, it will launch a postGre container\n5. Run \"yarn db:migrate\" from root, it creates the tables in the database\n6. Run \"yarn start\" from root\n\nApp should be up at http://localhost:8080/\n\n## Tickets and issues\n\nIf you don't have access yet to this [board](https://ogre-d4g.atlassian.net/jira/software/c/projects/D4G/boards/4) please request access to admin.\n\nThen chose an issue and there you go!\n\n## License\n\nThe project is under MIT license. For more information please read [LICENSE](https://github.com/dataforgoodfr/offseason_ogre/blob/master/LICENSE) file\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdataforgoodfr%2Foffseason_ogre","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdataforgoodfr%2Foffseason_ogre","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdataforgoodfr%2Foffseason_ogre/lists"}