{"id":37231754,"url":"https://github.com/tech-acs/dissemination-toolkit","last_synced_at":"2026-07-06T10:00:32.945Z","repository":{"id":332423033,"uuid":"885763459","full_name":"tech-acs/dissemination-toolkit","owner":"tech-acs","description":"Census and survey data dissemination tool","archived":false,"fork":false,"pushed_at":"2026-06-17T04:34:53.000Z","size":1604,"stargazers_count":0,"open_issues_count":0,"forks_count":2,"subscribers_count":5,"default_branch":"master","last_synced_at":"2026-06-17T06:23:23.332Z","etag":null,"topics":["census","dissemination"],"latest_commit_sha":null,"homepage":"https://tech-acs.github.io/dissemination-toolkit","language":"Blade","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/tech-acs.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","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":"2024-11-09T10:34:44.000Z","updated_at":"2026-06-17T04:34:57.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/tech-acs/dissemination-toolkit","commit_stats":null,"previous_names":["tech-acs/dissemination-toolkit"],"tags_count":48,"template":false,"template_full_name":"spatie/package-skeleton-laravel","purl":"pkg:github/tech-acs/dissemination-toolkit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tech-acs%2Fdissemination-toolkit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tech-acs%2Fdissemination-toolkit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tech-acs%2Fdissemination-toolkit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tech-acs%2Fdissemination-toolkit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tech-acs","download_url":"https://codeload.github.com/tech-acs/dissemination-toolkit/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tech-acs%2Fdissemination-toolkit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35185688,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-06T02:00:07.184Z","response_time":106,"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":["census","dissemination"],"created_at":"2026-01-15T03:45:43.208Z","updated_at":"2026-07-06T10:00:32.907Z","avatar_url":"https://github.com/tech-acs.png","language":"Blade","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Installation\n\nAs the dissemination toolkit is built for Laravel, you will first have to create a fresh Laravel project.\n\nPlease refer to the Laravel documentation [here](https://laravel.com/docs/installation) on how to go about this.\n\n\u003e Here is the **TLDR** version of a Laravel project creation\n\u003e \n\u003e After you have installed PHP and Composer, you may create a new Laravel project via the Composer `create-project` command:\n\u003e\n\u003e```\n\u003ecomposer create-project laravel/laravel my-dissemination\n\u003e```\n\nOnce you have created the project, you may use composer to install the latest version of the toolkit into your new Laravel project:\n\n```\ncomposer require uneca/dissemination-toolkit\n```\n\nAfter installing the package, you may execute the dissemination:install artisan command. This command will install a suite of tools and features that enable you to build\na modern census/data dissemination platform.\n\n```\nphp artisan dissemination:install\n```\n\n\n\u003e**New Applications Only**\n\u003e\n\u003eDissemination toolkit should only be installed into new Laravel applications. Attempting to install it into an existing (modified or not freshly installed) Laravel application will result in unexpected behavior and issues.\n\n\nNow that you have scaffolded your dissemination platform, the next step is to edit your application's .env configuration file and put in the correct settings for your database and other relevant settings.\n\nTo proceed, you need to first create a PostgreSQL database and add the details to the .env file (see below). Again please refer to the Laravel documentation on how to configure a database connection.\n\n```\nDB_CONNECTION=pgsql\nDB_HOST=your database host name or ip address\nDB_PORT=your database port (5432 is the default port for postgres)\nDB_DATABASE=your database name\nDB_USERNAME=your database username\nDB_PASSWORD=your database password\n```\n\nFor a complete list of all environment variables you can configure, please refer to the relevant section of the documentation.\n\nOnce you have edited your .env file, you are now ready to run the database migrations:\n\n```\nphp artisan migrate\n```\n\nRunning the migrations also seeds the application's default permissions, so no separate permissions step is required.\n\nAt this point, you are ready to start your server, whatever that may be (artisan serve command, nginx, WAMP, IIS, etc.) and navigate to the web address where you will see the landing page\n\nThe quickest way would be to run the built-in artisan web server like so,\n\n\n```\nphp artisan serve\n```\nAssuming everything goes well, you should be able to navigate to *http://localhost:8000* and see the landing page\n\nFinally, you can run the adminify command to create a _Manager_ account with which you can access your new platform.\n\n```\nphp artisan adminify\n```\n\n# Configuration\n\nThe first thing you should probably set the details for is your organization.\n\nYou can do this by going to the management drop down and then to the \"Organization\" menu\n\nThen you should create your area hierarchy and import your areas\n\nNext, you should populate some data for your:\n\n- Topics\n- Indicators\n- Dimensions\n- Dimension values\n- Documents and\n- Datasets\n\nFinally, you can move onto creating visualizations and data stories\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftech-acs%2Fdissemination-toolkit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftech-acs%2Fdissemination-toolkit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftech-acs%2Fdissemination-toolkit/lists"}