A list of all the companies WFH or events changed because of covid-19 https://stayinghome.club
  • Ruby 93.4%
  • SCSS 6.6%
Find a file
Drew Winstel ce5e8883e3
Merge pull request #1487 from phildini/ruby-25
Update ruby to 2.5.8
2020-08-01 08:33:15 -05:00
.github Clarified instructions, added universities 2020-03-12 20:16:54 -04:00
_data Merge pull request #1482 from PersoAbteilung/patch-1 2020-07-20 15:55:37 -05:00
assets/css Widen page width 2020-03-12 15:34:36 -07:00
.gitignore Ignore /vendor folder. 2020-03-13 10:43:47 +11:00
.rbenv-version Use data instead of inlines 2020-03-11 23:59:04 -07:00
.ruby-version Update ruby to 2.5.8 2020-08-01 08:29:43 -05:00
_config.yml Set theme jekyll-theme-cayman 2020-03-03 21:17:43 -08:00
CNAME Create CNAME 2020-03-03 21:19:09 -08:00
companies.md sort_natural doesn't work this way. Fix. 2020-03-14 14:32:11 +11:00
convert.rb Fix. 2020-03-14 14:20:43 +11:00
events.md Rearrange things to be easier to read. 2020-03-13 13:53:01 -07:00
Gemfile Use data instead of inlines 2020-03-11 23:59:04 -07:00
Gemfile.lock Bump activesupport from 5.2.4.1 to 6.0.3.1 2020-05-27 06:02:35 +00:00
index.md Add an update about the future of stayinghome.club 2020-04-12 12:32:52 -07:00
LICENSE Initial commit 2020-03-03 21:15:38 -08:00
README.md Tweak README 2020-03-18 07:51:03 -05:00
universities.md Rearrange things to be easier to read. 2020-03-13 13:53:01 -07:00

Who's staying home because of COVID-19?

This is a running list of companies that are taking steps to address the spread of COVID-19. Pull requests gratefully accepted, especially around design or data formatting or correctness. If you are a journalist and would like to speak to someone about the list, email phildini@phildini.net. View the live website here: stayinghome.club.

How do I add my company?

The short version is: the website is generated from files in the _data directory. Add the details of your company by mimicking what others have done, and create a PR. If you're not familiar with Git or Pull Requests, here are the steps. You will need a Github account.

  1. Make sure you're editing the main repository which hosts the website. It is here on Github: https://github.com/phildini/stayinghomeclub.

  2. You will need to create a YML file in the companies directory. Navigate there, and click the "Create new file" button. Here's a direct link to the Create page.

    Or, if you're just updating an existing entry, click on it, then hit the "Edit" button.

  3. Give the file a name, something like google.yml or envato.yml or my-awesome-company.yml or ing.yml, no fancy or uppercase characters, and be sure to end it with .yml. Add the details about your company in this format:

    name: Your company name
    wfh: Strongly Encouraged
    travel: Restricted
    visitors: Restricted
    events: Restricted
    last_update: 2020-03-13
    
  4. Click "Propose File Change", the big green button at the bottom of the page.

  5. This will take you to a page where you can click "Create pull request". Once you do that, one of the maintainers of the website will attend to your update ASAP.

  6. Thank you for helping us keep this site up-to-date! 🙏

For developers

You may want to run the site locally, to see what it looks like while you're making changes. A full tutorial is out of scope here, but these are the basic steps. We assume you know a little bit of Ruby.

First, you'll need Ruby Bundler, which manages this project's dependencies.

gem install bundler -v 2.1.4

Now, install the required Gems.

bundle install

When that's done, run the development server.

bundle exec jekyll serve

Jekyll will print a URL where you can see your local version running, as it would on the web. Usually that's http://127.0.0.1:4000/.