{"id":42712773,"url":"https://github.com/bimdata/platform-back","last_synced_at":"2026-01-29T15:13:08.367Z","repository":{"id":39801457,"uuid":"142312933","full_name":"bimdata/platform-back","owner":"bimdata","description":"BIMData Platform is a web application to manage your project in the BIM ecosystem","archived":false,"fork":false,"pushed_at":"2026-01-16T14:01:21.000Z","size":748,"stargazers_count":8,"open_issues_count":3,"forks_count":6,"subscribers_count":5,"default_branch":"develop","last_synced_at":"2026-01-17T03:44:11.539Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://platform.bimdata.io","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bimdata.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-07-25T14:39:30.000Z","updated_at":"2026-01-16T14:01:22.000Z","dependencies_parsed_at":"2023-12-15T13:45:01.934Z","dependency_job_id":"27e54478-8257-4e34-a6dc-dcaa616cde37","html_url":"https://github.com/bimdata/platform-back","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/bimdata/platform-back","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bimdata%2Fplatform-back","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bimdata%2Fplatform-back/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bimdata%2Fplatform-back/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bimdata%2Fplatform-back/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bimdata","download_url":"https://codeload.github.com/bimdata/platform-back/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bimdata%2Fplatform-back/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28880017,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-29T10:31:27.438Z","status":"ssl_error","status_checked_at":"2026-01-29T10:31:01.017Z","response_time":59,"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":[],"created_at":"2026-01-29T15:13:08.305Z","updated_at":"2026-01-29T15:13:08.361Z","avatar_url":"https://github.com/bimdata.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Platform Backend\n=================\n\nBIMData Platform Backend is the backend for the BIMData Platform application.\n\n\nTechnical view of the Platform\n-------------------------------\n\nThe BIMData Platform Backend is written in Python 3.\n\nPre-requisites\n---------------\n\nYou need:\n * Python 3.9 or later\n * Poetry: [Download poetry](https://python-poetry.org/docs/#installation)\n * a running database system: we support PostgreSQL only. \n\n    **Note:** Any other DBMS compatible with Django should work, but we don't officially support it.\n\n## Install\n\n### Clone this repo\n```\ngit clone https://github.com/bimdata/platform-back.git\n```\n### Launch the dedicated environment\n\nPlace yourself in the proper directory and type this: \n\n```\ncd platform-back\npoetry shell\n```\n\n### Install all requirements with poetry\n\n```\npoetry install\n```\n\n## Configure your environment\n\n\nThe `bimdata/.env` file is a representation of additionnal ENV variable in order to override default config.\nYou can duplicate `.env.example` in `.env` and customize your config.\n\n```\ncp .env.example .env\n```\n\n## Database\n\n* Create the database and edit the configuration file `.env`\n* Create the tables and populate the database:\n\n```\n./manage.py migrate\n```\n\n## Create a super-user\n\nCreate a super-user (access to admin page)\n```\n./manage.py createsuperuser\n```\n\n## Launch your local instance\n\n\n### Run the dev server\n\n```\n./manage.py runserver\n```\n\n\n## Crons \u0026 Celery\n\nWe use Celery to handle notifications emails\n\nCelery need at least two runners: one beater and at least one worker.\n\n```bash\n# Run the beater\ncelery -A platform_back beat --loglevel=info --scheduler django_celery_beat.schedulers:DatabaseScheduler\n```\n\n```bash\n# Run a worker\ncelery -A platform_back worker --loglevel=info\n```\n\nFor development purpose, you can run both in the same command with:\n\n```bash\ncelery -A platform_back worker --beat --loglevel=info --scheduler django_celery_beat.schedulers:DatabaseScheduler\n```\n\n\n## Documentation\n\nCheck https://developers.bimdata.io to learn more about the Platform features.\nOur documentation helps you to understand the concepts and architecture of the Platform. \n\n\nNeed more [information about the API](https://developers.bimdata.io/api/index.html)?\n\nNeed some details [about the authentication workflow](https://developers.bimdata.io/guide/authentication_bimdata_connect.html)?\n\n## Testing\n\n`./manage.py test` to run tests\n\n### Troubleshooting\n\n#### If `psycopg2` is missing (Ubuntu)\n\nInstall `libpq-server` with your packet manager, and re-do the procedure from the dependencies installation:\n\n``` \nsudo apt install libpq-server\npoetry install\n```\n\n## License\n\nYou are free to copy, modify, and distribute BIMData Platform Backend under the terms of the LGPL 3.0 license.\nSee [the LICENSE file](LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbimdata%2Fplatform-back","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbimdata%2Fplatform-back","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbimdata%2Fplatform-back/lists"}