This is the project / site that will eventually support the domain http://AWider.NET, in an attempt to foster more involvement in the .NET OSS world.
While there is no code in the repository yet, we hope you'll join us for planning discussions over the in the issues section. We encourage you to start your own topics as well if they're not covered so we can think about how best to bring this project to fruition.
- Install Ruby (2.3.x is what we're using)
- Install the bundler gem:
gem install bundler - Head to the root directory in your command prompt
- Run
bundle install. The github pages gems will install. - Run
bundle exec jekyll serve --config _config.yml,_config.dev.yml. This will serve the page athttp://localhost:4000 - If you omit the
--configreferences, all URLs will reference the prod site, which may be confusing. - This reference means that the standard
_config.ymlis used first, and then overridden with the values in_config.dev.yml. If you run into problems, add an issue in this repo and we'll figure it out.
Sean Ran into this problem.
Here's the fix on windows, per that thread (note -- requires a restart):
- Go to github and generate a personal access token
- It just needs public access
- Don't forget to copy the token text!
- Create a system environment variable called
JEKYLL_GITHUB_TOKENand set the value to the token text - Create a system environment variable called
SSL_CERT_FILEand set the value to the full path of thecacert.pemfile (found in the root directory of this repo) - Restart your machine.
This should remove this error when building the repo. (ugh, sorry about that)