{"id":43069700,"url":"https://github.com/baraverkstad/rapidcontext","last_synced_at":"2026-03-07T11:01:18.456Z","repository":{"id":59981157,"uuid":"1454267","full_name":"baraverkstad/rapidcontext","owner":"baraverkstad","description":"RapidContext is a platform for creating rich dynamic web applications. It consists of both a client and a server part, providing a simple, safe and stable way to build applications that can connect to a wide range of back-end services.","archived":false,"fork":false,"pushed_at":"2026-02-18T18:23:35.000Z","size":47002,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-02-18T21:00:26.096Z","etag":null,"topics":["development","integration","java","javascript","platform","toolkit"],"latest_commit_sha":null,"homepage":"https://www.rapidcontext.com/","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/baraverkstad.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2011-03-08T11:20:59.000Z","updated_at":"2026-02-18T18:23:41.000Z","dependencies_parsed_at":"2023-11-11T20:23:03.931Z","dependency_job_id":"b35296c4-4d0e-4af3-9f9b-13dce34b83a7","html_url":"https://github.com/baraverkstad/rapidcontext","commit_stats":null,"previous_names":["cederberg/rapidcontext"],"tags_count":28,"template":false,"template_full_name":null,"purl":"pkg:github/baraverkstad/rapidcontext","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/baraverkstad%2Frapidcontext","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/baraverkstad%2Frapidcontext/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/baraverkstad%2Frapidcontext/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/baraverkstad%2Frapidcontext/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/baraverkstad","download_url":"https://codeload.github.com/baraverkstad/rapidcontext/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/baraverkstad%2Frapidcontext/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30212103,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T09:02:10.694Z","status":"ssl_error","status_checked_at":"2026-03-07T09:02:08.429Z","response_time":53,"last_error":"SSL_read: 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":["development","integration","java","javascript","platform","toolkit"],"created_at":"2026-01-31T13:50:56.814Z","updated_at":"2026-03-07T11:01:18.444Z","avatar_url":"https://github.com/baraverkstad.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"RapidContext README\n===================\nRapidContext is a platform for creating rich dynamic web applications.\nIt consists of both a client and a server part, providing a simple,\nsafe and stable way to build applications that can connect to a wide\nrange of back-end services.\n\n\nDocker Images\n-------------\nThe easiest way to run RapidContext is using a pre-built Docker image:\n\n    $\u003e docker run \\\n         -p 8080:80\n         -v local-data:/opt/local \\\n         ghcr.io/baraverkstad/rapidcontext\n\nThe command above starts a new server on http://localhost:8080/ and creates a\ndefault `admin` user with blank password on the first run (unless other users\nare found).\n\nSee the GitHub registry for RapidContext for available version tags:\nhttps://github.com/baraverkstad/rapidcontext/pkgs/container/rapidcontext\n\n\nInstallation \u0026 Usage\n--------------------\nOn Linux, MacOS \u0026 Unix the following commands will unpack and start\nthe server:\n\n    $\u003e unzip rapidcontext-\u003cversion\u003e.zip\n    $\u003e cd rapidcontext-\u003cversion\u003e\n    $\u003e bin/rapidcontext\n\nOn Windows, perform the following steps:\n\n  1. Unpack `rapidcontext-\u003cversion\u003e.zip`\n  2. Open the directory `rapidcontext-\u003cversion\u003e/bin`\n  3. Double-click `rapidcontext.bat`\n\nOnce the server has started, go to one of the following addresses\nin your web browser:\n\n  - http://localhost/\n  - http://localhost:8080/\n  - http://localhost:8180/\n  - http://localhost:8081/\n\nIf this is a blank installation, login with the following user\ncredentials:\n\n    Login:     admin\n    Password:  \u003cblank\u003e\n\n\nUsage via Maven\n---------------\nRapidContext can be used as a Maven dependency. First add the repository to\nyour `pom.xml`:\n\n```xml\n\u003crepositories\u003e\n    \u003crepository\u003e\n        \u003cid\u003egithub\u003c/id\u003e\n        \u003cname\u003eGitHub Packages\u003c/name\u003e\n        \u003curl\u003ehttps://maven.pkg.github.com/baraverkstad/rapidcontext\u003c/url\u003e\n    \u003c/repository\u003e\n\u003c/repositories\u003e\n```\n\nThen add a dependency for the API version to use:\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003eorg.rapidcontext\u003c/groupId\u003e\n    \u003cartifactId\u003erapidcontext-api\u003c/artifactId\u003e\n    \u003cversion\u003e2025.06\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n\nDocumentation\n-------------\nSee the RapidContext documentation site for more details:\nhttps://www.rapidcontext.com/doc/\n\n\nAcknowledgments\n---------------\nPlease see the \"About RapidContext\" dialog in the app for more\ninformation.\n\n\nLicense\n-------\nSee the separate LICENSE.md file for copyright and licensing\ndetails.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbaraverkstad%2Frapidcontext","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbaraverkstad%2Frapidcontext","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbaraverkstad%2Frapidcontext/lists"}