{"id":19319839,"url":"https://github.com/hyperoslo/champagne","last_synced_at":"2025-08-24T18:45:21.082Z","repository":{"id":66286526,"uuid":"52731747","full_name":"hyperoslo/Champagne","owner":"hyperoslo","description":"The Champagne Web Framework.","archived":false,"fork":false,"pushed_at":"2016-07-08T17:13:11.000Z","size":401,"stargazers_count":7,"open_issues_count":16,"forks_count":0,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-06-10T00:37:15.072Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Swift","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/hyperoslo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2016-02-28T16:47:13.000Z","updated_at":"2019-08-13T07:06:19.000Z","dependencies_parsed_at":null,"dependency_job_id":"c63e0588-abc2-474f-aca7-f55a89b14f12","html_url":"https://github.com/hyperoslo/Champagne","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/hyperoslo/Champagne","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyperoslo%2FChampagne","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyperoslo%2FChampagne/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyperoslo%2FChampagne/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyperoslo%2FChampagne/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hyperoslo","download_url":"https://codeload.github.com/hyperoslo/Champagne/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyperoslo%2FChampagne/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271925120,"owners_count":24844561,"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-24T02:00:11.135Z","response_time":111,"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":"2024-11-10T01:25:27.423Z","updated_at":"2025-08-24T18:45:21.023Z","avatar_url":"https://github.com/hyperoslo.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Champagne](https://github.com/hyperoslo/Champagne/blob/master/Art/ChampagneCover.png)\n\n[![CI Status](http://img.shields.io/travis/hyperoslo/Champagne.svg?style=flat)](https://travis-ci.org/hyperoslo/Champagne)\n![Linux](https://img.shields.io/badge/os-linux-green.svg?style=flat)\n![Mac OS X](https://img.shields.io/badge/os-Mac%20OS%20X-green.svg?style=flat)\n![Swift](https://img.shields.io/badge/%20in-swift%203.0-orange.svg)\n[![License](http://img.shields.io/badge/license-MIT-brightgreen.svg)](http://opensource.org/licenses/MIT)\n\n**Champagne** is a Swift web framework with flexible and powerful modular\nsystem.\n\n* Conventional project structure.\n* Modularity with `bubbles` - bundles/components that help to organize\nthe project code and spit functionality into separate feature-based modules.\n* Application-specific `bubbles` used to build your application.\n* Reusable `bubbles` that could be made into Swift packages and be shared across\nmany projects.\n* Smart assets management.\n* Template engines, resource and rendering factories.\n* Built-in routing system.\n* [S4](https://github.com/open-swift/S4) compatible [server](https://github.com/VeniceX/Venice).\n* More features are coming...\n\n**Please note** that this is a work in progress, `Champagne` is under continuous\ndevelopment and **is not ready** for production usage.\n\n* [Installation](#installation)\n* [Usage](#usage)\n* [Author](#author)\n* [Credits](#credits)\n* [Contributing](#contributing)\n* [License](#license)\n\n## Installation\n\n* Install Swift development snapshot [version](https://github.com/hyperoslo/Champagne/blob/master/.swift-version)\nfrom [Swift.org](https://swift.org/download/) or via [swiftenv](https://github.com/kylef/swiftenv).\n* Add the following lines to your `Package.swift`:\n\n## Usage\n\n```swift\nimport Champagne\n\nlet kernel = AppKernel()\n\ndo {\n  let application = Application(\n    kernel: kernel,\n    config: Config(root: \"/\")\n  )\n\n  try application.start()\n} catch {\n  print(error)\n}\n```\n\nFor more info about the project structure and conventions please check\n[Demo](https://github.com/hyperoslo/Champagne/blob/master/Sources/Demo)\n\n## Author\n\nHyper Interaktiv AS, ios@hyper.no\n\n## Credits\n\n- Initial implementation is heavily inspired by [Vapor](https://github.com/qutheory/vapor)\nwhich is the first true web framework for Swift.\n- It's also worth mentioning that a lot of ideas came from\n[Symfony](http://symfony.com), [Rails](https://github.com/rails/rails) and\nother Ruby and PHP frameworks.\n- And we salute the whole Swift server-side community, especially\n[Zewo](https://github.com/Zewo/Zewo) and [OpenSwift](https://github.com/open-swift).\nThanks you for doing such an awesome job bringing developers open source\nlibraries and tools for all the needs.\n\n## Contributing\n\nWe would love you to contribute to **Champagne**, check the [CONTRIBUTING](https://github.com/hyperoslo/Champagne/blob/master/CONTRIBUTING.md)\nfile for more info.\n\n## License\n\n**Champagne** is available under the MIT license. See the [LICENSE](https://github.com/hyperoslo/Champagne/blob/master/LICENSE.md) file for more info.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhyperoslo%2Fchampagne","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhyperoslo%2Fchampagne","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhyperoslo%2Fchampagne/lists"}