{"id":22315301,"url":"https://github.com/erran/erran.github.io","last_synced_at":"2025-06-13T19:05:16.667Z","repository":{"id":146240113,"uuid":"13567741","full_name":"erran/erran.github.io","owner":"erran","description":null,"archived":false,"fork":false,"pushed_at":"2019-08-29T00:44:20.000Z","size":203,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-13T19:04:29.859Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://errancarey.com","language":"CSS","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/erran.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}},"created_at":"2013-10-14T17:14:44.000Z","updated_at":"2019-08-29T00:44:22.000Z","dependencies_parsed_at":"2023-06-29T00:01:20.114Z","dependency_job_id":null,"html_url":"https://github.com/erran/erran.github.io","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/erran/erran.github.io","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erran%2Ferran.github.io","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erran%2Ferran.github.io/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erran%2Ferran.github.io/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erran%2Ferran.github.io/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/erran","download_url":"https://codeload.github.com/erran/erran.github.io/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erran%2Ferran.github.io/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259704411,"owners_count":22898858,"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":[],"created_at":"2024-12-03T22:13:00.180Z","updated_at":"2025-06-13T19:05:16.655Z","avatar_url":"https://github.com/erran.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"This app is a showcase of Github projects for an organization or a user, all in Javascript.\n\nIt uses [AuraJS](https://github.com/aurajs/aura) and an [aura-github](https://github.com/hull/hull.github.io/blob/master/assets/js/extensions/aura-github.js) extension that allows our Widgets to talk directly to Github's API, and [2 Aura widgets](https://github.com/hull/hull.github.io/tree/master/widgets) : \n\n* [user](https://github.com/hull/hull.github.io/blob/master/widgets/user/main.js) to load and display a user's profile. (In our case, [hull's organization](https://github.com/hull))\n* [repos](https://github.com/hull/hull.github.io/blob/master/widgets/repos/main.js) to load and display a list of repos.\n\nIf you want to know more how it was done, read [the blog post](http://blog.hull.io/post/46504817377/how-to-build-your-own-twitter-like-open-source-page).\n\n## Using on your own github homepage\n\n1. First, clone this repository (or fork it directly on Github) :\n\n        git clone git://github.com/hull/hull.github.io.git\n\n2. Create a repository named ``you.github.io``, where ``you`` is your username (If you have fork the repository, don't forget to rename it!)\n\n3. Whitelist your domain on your github applications settings [https://github.com/settings/applications](https://github.com/settings/applications)\n\n   Click on **Register a new application**\n   \n   Fill **Main URL** and **Callback URL** with your github homepage url. (i.e. ``http://you.github.io``)\n\n4. Configure ```index.html``` with the correct settings.\n\n   If you are an organization:\n\n        \u003cheader data-aura-widget=\"user\" data-aura-org=\"hull\"\u003e\u003c/header\u003e \n        \u003cul data-aura-widget=\"repos\" data-aura-org=\"hull\"\u003e\u003c/ul\u003e\n    \n    else you are a simple user:\n\n        \u003cheader data-aura-widget=\"user\" data-aura-user=\"victa\"\u003e\u003c/header\u003e \n        \u003cul data-aura-widget=\"repos\" data-aura-user=\"victa\"\u003e\u003c/ul\u003e\n\n5. ``git push`` to your github page repository and you’re done!\n\n\n[More about github pages](https://github.com/blog/272-github-pages)\n\n\n## Using locally\n\nInstall [node.js](http://nodejs.org) **(Only used for developing the app locally, not needed for deployment)**\n\nInstall [grunt-cli](https://github.com/gruntjs/grunt-cli) as a global module.\n\n    [sudo] npm install grunt-cli -g\n\n\nthen install grunt and it's modules in the project's folder.\n\n    cd hull.github.io\n    npm install\n\n\n### Running the app\n\nStart grunt\n\n    grunt\n\nOpen in your browser\n\n    open http://localhost:3010\n\n## Options\n\n### User widget\n\n* `style`: Optional, could be **small** or **complete** depending on what do you want to show.\n\n##### Example:\n\n    \u003cul data-aura-widget=\"repos\" data-aura-style=\"complete\" data-aura-user=\"victa\"\u003e\u003c/ul\u003e\n        \n## Next steps\n\nHere are a few ideas for further improvement :\n\n* Add statistics widgets\n* Add more details about an user, an organization, a repository…\n* ...\n\nFeel free to fork the project and add your own widget.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ferran%2Ferran.github.io","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ferran%2Ferran.github.io","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ferran%2Ferran.github.io/lists"}