{"id":20631609,"url":"https://github.com/inlets/inlets.dev","last_synced_at":"2026-03-16T08:35:11.331Z","repository":{"id":46602056,"uuid":"287197460","full_name":"inlets/inlets.dev","owner":"inlets","description":"Website and blog - inlets.dev","archived":false,"fork":false,"pushed_at":"2024-10-17T13:53:26.000Z","size":24965,"stargazers_count":10,"open_issues_count":0,"forks_count":11,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-10-19T12:49:34.822Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://inlets.dev/","language":"HTML","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/inlets.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2020-08-13T06:16:49.000Z","updated_at":"2024-10-17T13:53:29.000Z","dependencies_parsed_at":"2024-10-19T09:44:01.501Z","dependency_job_id":null,"html_url":"https://github.com/inlets/inlets.dev","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/inlets/inlets.dev","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inlets%2Finlets.dev","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inlets%2Finlets.dev/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inlets%2Finlets.dev/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inlets%2Finlets.dev/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/inlets","download_url":"https://codeload.github.com/inlets/inlets.dev/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inlets%2Finlets.dev/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263148932,"owners_count":23421280,"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-11-16T14:13:00.489Z","updated_at":"2026-03-16T08:35:11.290Z","avatar_url":"https://github.com/inlets.png","language":"HTML","funding_links":[],"categories":["HTML"],"sub_categories":[],"readme":"## inlets.dev homepage\n\n[![Netlify Status](https://api.netlify.com/api/v1/badges/fd9c25fb-865c-481e-adcf-90f6a0a7a0cc/deploy-status)](https://app.netlify.com/sites/inlets-dev/deploys)\n\n## Adding a new blog post\n\n* Create an issue and propose the topic. Wait for approval before contributing, unless you've already been asked to contribute a post.\n\n* Create a new YAML file in `blog/_posts` - see [this example](https://github.com/alexellis/inlets.dev/blob/master/blog/_posts/2020-10-29-preparing-docker-hub-rate-limits.md) for how to set the post title and description.\n\n* Prefix it with the date.\n\n* Add images to `/images/` - resize all images to under 200-300KB, for a faster page loading time\n\n* Make sure you have a cropped image for the background / title of the post, this will show up on the page roll-up at /blog/ - good sources for images are: unsplash.com and pexels.com\n\n* Sign-off any commits you make with `git commit -s`, this is not GPG or cryptography, but [a simple declaration](https://en.wikipedia.org/wiki/Developer_Certificate_of_Origin)\n\n* Raise a Pull Request and fill out the whole template, including how you tested the page and the instructions.\n\nIf you use any copyrighted material such as text, code, or images, then you must credit the author.\n\n## Usage\n\n### Running with docker, when Ruby 2.x is not installed\n\nFor Linux:\n\nUpdate the inotify settings:\n\n```bash\necho 2048 | sudo tee /proc/sys/fs/inotify/max_user_instances\nsudo sysctl -p\n```\n\nFor MacOS/Linux:\n\nRun a `yarn install` locally:\n\n```bash\nsudo npm i -g yarn\nyarn install\n```\n\nThen bring the site up with:\n\n```bash\ndocker-compose up --build\n```\n\nAccess the site at: http://127.0.0.1:4000/\n\nWhen you're finished, run: `docker-compose down`.\n\n### Initial installation to run locally, if Ruby 2.x is installed\n\nYou will need node.js in order to install yarn:\n\n```bash\n$ npm i -g yarn\n```\n\nYou may need to run `brew install/upgrade ruby` if the `bundle` command is unavailable.\n\nIf it's still unavailable run:\n\n```bash\n$ gem install bundle\n```\n\nInstall Bundler, and set up your Ruby gem environment:\n\nMacOS:\n\n```bash\nexport GEM_HOME=$HOME/.gem\nexport PATH=$HOME/.gem/bin:$PATH\n\n$ arch -arch x86_64 gem install bundler:2.2.13\n$ arch -arch x86_64 bundle install\n```\n\nOther systems:\n\n```bash\nexport GEM_HOME=$HOME/.gem\nexport PATH=$HOME/.gem/bin:$PATH\n\n$ gem install bundler:2.2.13\n$ bundle install\n```\n\nInstall Yarn dependencies:\n\n```bash\n$ yarn install\n\n$ yarn run tailwind init _includes/tailwind.config.js\n```\n\n### For production:\n\n```bash\nJEKYLL_ENV=production bundle exec jekyll build\n```\n\nContent will be in `_site`\n\n### To start a preview, simply run:\n\n```bash\n$GEM_HOME/bin/bundle exec jekyll serve\n```\n\nAccess the site at: http://127.0.0.1:4000/\n\nApple M1:\n\n```bash\nexport GEM_HOME=$HOME/.gem\nexport PATH=$HOME/.gem/bin:$PATH\n\narch -arch x86_64 $GEM_HOME/bin/bundle install\narch -arch x86_64 $GEM_HOME/bin/bundle exec jekyll serve\n```\n\n## Running in Docker\n\nIf you have had some issues installing the various gems, then you can use Docker instead:\n\n```bash\ndocker-compose up\n```\n\nThen access the site at http://127.0.0.1:4000\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finlets%2Finlets.dev","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finlets%2Finlets.dev","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finlets%2Finlets.dev/lists"}