{"id":20977439,"url":"https://github.com/ruferdz/immunopass","last_synced_at":"2025-05-14T14:32:16.753Z","repository":{"id":40312277,"uuid":"455676420","full_name":"RuFerdZ/ImmunoPass","owner":"RuFerdZ","description":"💉 A decentralized application for managing vaccination passports build upon the Solana Blockchain ⛓️","archived":false,"fork":false,"pushed_at":"2023-05-12T16:40:37.000Z","size":1746,"stargazers_count":4,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2023-05-12T17:27:28.746Z","etag":null,"topics":["anchor","react","rust","solana","web3"],"latest_commit_sha":null,"homepage":"https://immunopass.netlify.app/","language":"JavaScript","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/RuFerdZ.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}},"created_at":"2022-02-04T19:46:57.000Z","updated_at":"2023-05-12T16:44:31.000Z","dependencies_parsed_at":"2022-06-29T08:33:05.835Z","dependency_job_id":null,"html_url":"https://github.com/RuFerdZ/ImmunoPass","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RuFerdZ%2FImmunoPass","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RuFerdZ%2FImmunoPass/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RuFerdZ%2FImmunoPass/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RuFerdZ%2FImmunoPass/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RuFerdZ","download_url":"https://codeload.github.com/RuFerdZ/ImmunoPass/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225297832,"owners_count":17452010,"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","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":["anchor","react","rust","solana","web3"],"created_at":"2024-11-19T04:58:49.873Z","updated_at":"2024-11-19T04:58:50.455Z","avatar_url":"https://github.com/RuFerdZ.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ImmunoPass\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\nImmunoPass is a Decentralized Application (DApp) built upon the Solana Blockchain for its higher transaction speed and lower gas fees.\n\nImmunoPass is a digital vaccination/Immunisation record-keeping and maintenance platform that focuses more on the ease of access, accuracy and integrity of vaccination data where the Vaccination Profile/Passport is owned by the user itself for privacy and is overlooked by the healthcare sector for validation and verification.\n\n## Project Tools for this project\n**Note: most of the libraries and frameworks used in this project doesn't run/is not available/not compatible in the windows environment*\n\n[Node](https://nodejs.org/en/) - the node package manager was used to maintain packages of the Solana Application + the Client Application. \n\n[Rust Programming Language](https://www.rust-lang.org/tools/install) - the programming language which has been used to develop the DApp.\n\n[Solana Tool Suite](https://docs.solana.com/cli/install-solana-cli-tools) - provides the environment for building Solana based DApps.\n\n[Anchor Framework](https://project-serum.github.io/anchor/getting-started/introduction.html) - Anchor is a framework for Solana's Sealevel runtime providing several convenient developer tools. \n\n[React JS](https://reactjs.org/) - the frontend/client-side was developed using React JS library.\n\n## Setup Project\n\n1. clone the repository and go into the project directory\n\n```bash\ngit clone https://github.com/RuFerdZ/ImmunoPass.git\ncd immunopass\n```\n2. download the dependencies for the anchor-based Solana DApp\n```bash\nyarn install\n```\n3. Change cluster pointer to localhost and run solana-test-validator from the root directory\n```bash\nsolana config set --url http://localhost:8899 \ncd ~\nsolana-test-validator \n```\n4. Build and Deploy DApp\n```bash\nanchor build\nanchor deploy\n```\n5. Get the program id generated from the ```anchor deploy``` and replace it on the\n  - ```Anchor.toml``` immunopass key's value\n```\n[programs.localnet]\nimmunopass = \"HoVPS3s5fbgFfbXAuGg6hfL8CKMYjLBhPHdtfqBgLNMG\"\n``` \n   - ```programs/immunopass/lib.rs``` program id\n```\ndeclare_id!(\"HoVPS3s5fbgFfbXAuGg6hfL8CKMYjLBhPHdtfqBgLNMG\");\n```\n6. Go into the ```\\app``` directory and install dependencies\n```bash\ncd app\nnpm install\n```\n6. Run the client application\n```bash\nnpm start\n```\n7. Now you can access the DApp via ```http:\\\\localhost:3000\\``` from your browser!\n\n## Usages\n\nYou can run the test cases in the root directory of the project (not in ```/app```)\n\n**Note: stop solana-test-validator if it's already running in the background to avoid data duplication/addition to the blockchain while running tests which may cause the tests to fail*\n\n```bash\nanchor test\n```\n\nIf doing changes to the business logic (the solana program), make sure to synchronize the IDL file generated in the solana program with the IDL file in the ```/app``` after a successful deployment.\n\n```bash\nanchor run sync-idl\n```\n\n## Contributing\nPull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.\n\nPlease make sure to update tests as appropriate.\n\n## License\n[MIT](https://choosealicense.com/licenses/mit/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fruferdz%2Fimmunopass","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fruferdz%2Fimmunopass","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fruferdz%2Fimmunopass/lists"}