{"id":30180840,"url":"https://github.com/simplicitesoftware/module-minio","last_synced_at":"2025-08-12T08:05:44.728Z","repository":{"id":308200712,"uuid":"1031935920","full_name":"simplicitesoftware/module-minio","owner":"simplicitesoftware","description":null,"archived":false,"fork":false,"pushed_at":"2025-08-04T16:50:22.000Z","size":27,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-08-04T19:57:57.511Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","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/simplicitesoftware.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":"2025-08-04T14:54:22.000Z","updated_at":"2025-08-04T16:50:25.000Z","dependencies_parsed_at":"2025-08-04T20:11:18.385Z","dependency_job_id":null,"html_url":"https://github.com/simplicitesoftware/module-minio","commit_stats":null,"previous_names":["simplicitesoftware/module-minio"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/simplicitesoftware/module-minio","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplicitesoftware%2Fmodule-minio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplicitesoftware%2Fmodule-minio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplicitesoftware%2Fmodule-minio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplicitesoftware%2Fmodule-minio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/simplicitesoftware","download_url":"https://codeload.github.com/simplicitesoftware/module-minio/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplicitesoftware%2Fmodule-minio/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270024697,"owners_count":24514054,"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-12T02:00:09.011Z","response_time":80,"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":"2025-08-12T08:05:43.302Z","updated_at":"2025-08-12T08:05:44.714Z","avatar_url":"https://github.com/simplicitesoftware.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!--\n ___ _            _ _    _ _    __\n/ __(_)_ __  _ __| (_)__(_) |_ /_/\n\\__ \\ | '  \\| '_ \\ | / _| |  _/ -_)\n|___/_|_|_|_| .__/_|_\\__|_|\\__\\___|\n            |_| \n--\u003e\n![](https://platform.simplicite.io/logos/standard/logo250.png)\n* * *\n\n`Minio` module definition\n=========================\n\nMinio S3 cloud storage example\n------------------------------\n\n### Prerequisites\n\n1. Install Minio server\n\nSee [this page](https://docs.min.io/community/minio-object-store/index.html).\nYou should install both the server and the `mc` CLI client.\n\nFor a local deployment the storage server's S3 endpoint is `http://127.0.0.1:9000`\n\nYou can alias it as `local`:\n\n```text\nmc alias set local http://127.0.0.1:9000 minioadmin minioadmin\nmc admin info local\n```\n\n\u003e note: the objects browser UI is also available on `http://127.0.0.1:9001`.\n\n2. Create credentials\n\n```text\nmc admin accesskey create local\n```\n\nThe result should look like:\n\n```text\nAccess Key: \u003ca random access key\u003e\nSecret Key: \u003ca random secret key\u003e\nExpiration: NONE\nName:\nDescription:\n```\n\n3. Create a `test` bucket\n\n```text\nmc mb local/test\n```\n\n4. Review the `MINIO_CONFIG` system param to comply with your Minio server configuration\n\nThe default value of the system parameter is using the follwoing environment variables:\n\n- `MINIO_ENDPOINT`: API endpoint (e.g. `http://127.0.0.1:9000`)\n- `MINIO_BUCKET`: bucket name (e.g. `test`)\n- `MINIO_ACCESSKEY` and `MINIO_SECRETKEY`: credentials\n\n### Docker\n\nAdd the `minio` service to you `docker-compose.yml`:\n\n```yaml\nservices:\n  minio:\n    image: quay.io/minio/minio:latest\n    command: [ \"server\" ]\n    ports:\n      - 127.0.0.1:9000:9000\n    volumes:\n      - \u003cyour host volume spec\u003e:/data\n```\n\nCreate the credentials and the bucket locally using the `mc` CLI\n(once done you can remove the `9000` port mapping)\nand add the following environment variabled to your `simplicite` service:\n\n```yaml\n    environment:\n      MINIO_ENDPOINT: \"http://minio:9000\"\n      MINIO_BUCKET: \"\u003cyour bucket name, e.g. test\u003e\"\n      MINIO_ACCESSKEY: \"\u003cyour access key\u003e\"\n      MINIO_SECRETKEY: \"\u003cyour secret key\u003e\"\n```\n\n`MinioTest` business object definition\n--------------------------------------\n\n\n\n### Fields\n\n| Name                                                         | Type                                     | Required | Updatable | Personal | Description                                                                      |\n|--------------------------------------------------------------|------------------------------------------|----------|-----------|----------|----------------------------------------------------------------------------------|\n| `minioTstCode`                                               | char(50)                                 | yes*     | yes       |          | -                                                                                |\n| `minioTstLabel`                                              | char(255)                                |          | yes       |          | -                                                                                |\n| `minioTstDocument`                                           | document                                 |          | yes       |          | -                                                                                |\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimplicitesoftware%2Fmodule-minio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsimplicitesoftware%2Fmodule-minio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimplicitesoftware%2Fmodule-minio/lists"}