{"id":19316244,"url":"https://github.com/userfrosting/web","last_synced_at":"2026-01-31T18:08:49.729Z","repository":{"id":54786954,"uuid":"78980552","full_name":"userfrosting/web","owner":"userfrosting","description":"The official website for UserFrosting","archived":false,"fork":false,"pushed_at":"2024-06-11T00:30:10.000Z","size":42788,"stargazers_count":1,"open_issues_count":7,"forks_count":1,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-06-12T22:40:30.431Z","etag":null,"topics":["userfrosting","userfrosting-documentation"],"latest_commit_sha":null,"homepage":"https://www.userfrosting.com","language":"JavaScript","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/userfrosting.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},"funding":{"github":null,"patreon":null,"open_collective":"userfrosting","ko_fi":"lcharette","tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2017-01-15T00:28:05.000Z","updated_at":"2024-06-11T00:30:13.000Z","dependencies_parsed_at":"2024-06-11T02:37:54.840Z","dependency_job_id":null,"html_url":"https://github.com/userfrosting/web","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/userfrosting/web","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/userfrosting%2Fweb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/userfrosting%2Fweb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/userfrosting%2Fweb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/userfrosting%2Fweb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/userfrosting","download_url":"https://codeload.github.com/userfrosting/web/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/userfrosting%2Fweb/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28949274,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T14:26:55.697Z","status":"ssl_error","status_checked_at":"2026-01-31T14:26:52.545Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["userfrosting","userfrosting-documentation"],"created_at":"2024-11-10T01:10:34.555Z","updated_at":"2026-01-31T18:08:49.703Z","avatar_url":"https://github.com/userfrosting.png","language":"JavaScript","funding_links":["https://opencollective.com/userfrosting","https://ko-fi.com/lcharette"],"categories":[],"sub_categories":[],"readme":"# UserFrosting main site\n\nhttps://www.userfrosting.com\n\nThis is the repository for the main UserFrosting 4 website.  It is built with the flat-file CMS [Grav](http://getgrav.org).\n\n## Local installation\n\n### Step 1 - Install Grav\n\nThis application uses the [Grav](https://learn.getgrav.org/) CMS.  This repository does not contain a full Grav installation - rather, it just contains the contents of Grav's `user` directory, which is where all of our custom content, themes, and assets live.  This was done as per the [recommendation on Grav's blog](https://getgrav.org/blog/developing-with-github-part-2), to make it easier to deploy changes to the live server.\n\nTo install this website on your computer, first [install grav core](https://getgrav.org/downloads) in a project folder called `userfrosting-web` under your webserver's document root folder. Then, find the `user` folder inside of your project folder.  Delete the contents of the `user` folder and clone this repository directly into the user folder.\n\nWhen you're done it should look like this:\n\n```\nhtdocs/\n└── userfrosting-web/\n   ├── assets/\n   ├── ...\n   ├── user/\n       ├── .git\n       ├── accounts/\n       ├── assets/\n       ├── config/\n       └── ...\n   └── ...\n\n```\n\n### Step 2\n\nGrav needs your webserver to be able to write to certain directories.  In OSX with XAMPP installed, this won't work by default.  To deal with this:\n\nAdd default webserver user `daemon` to OSX's `staff` group (which already has the necessary permissions for writing to files/directories):\n\n`sudo dseditgroup -o edit -a daemon -t user staff`\n\n## Docker Installation\n\n1. Clone repo\n   ```\n   git clone https://github.com/userfrosting/web.git userfrosting-web\n   cd userfrosting-web\n   ```\n\n2. Build Grav container\n   ```\n   docker build -t grav:latest .\n   ```\n\n3. Start Grav container\n   ```\n   docker run -d --rm --name=userfrosting-web -p 8080:80 -v \"$(pwd):/var/www/grav/user\" grav:latest\n   ```\n\nIt will take a couples of second for the site to be up and running while the base Grav installation is done. Once this is complete, you can access the website at [http://localhost:8080/](http://localhost:8080/).\n\nTo stop the container:\n\n```bash\ndocker stop userfrosting-web\n```\n\nTo access Grav command line utility or gpm, you can use :\n\n```bash\ndocker exec -it userfrosting-web bash\nchmod +x bin/gpm # This is only needed if permissions are acting up\nbin/grav install\n```\n\n## Credits\n\nFavicons were generated with https://realfavicongenerator.net/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuserfrosting%2Fweb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fuserfrosting%2Fweb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuserfrosting%2Fweb/lists"}