All Projects → justwriteclick → Docslikecode

justwriteclick / Docslikecode

Licence: mit
Read stories, learn through practice, share with others, to treat docs as code.

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to Docslikecode

anniew.xyz
My Personal Website / Portfolio
Stars: ✭ 41 (+46.43%)
Mutual labels:  website, netlify
Easy Hexo
🤘 Build your own website with Hexo, the easy way. | 轻松使用 Hexo 建站。
Stars: ✭ 314 (+1021.43%)
Mutual labels:  documentation, website
Preact Www
📖 Preact documentation website.
Stars: ✭ 272 (+871.43%)
Mutual labels:  documentation, website
Dantecalderon.dev
💻 ❤️ My personal website
Stars: ✭ 51 (+82.14%)
Mutual labels:  netlify, website
Ru.reactjs.org
React documentation website in Russian / Официальная русская версия сайта React
Stars: ✭ 444 (+1485.71%)
Mutual labels:  documentation, website
Gatsby Starter Saas Marketing
☁️ A simple one page marketing site starter for SaaS companies and indie hackers
Stars: ✭ 103 (+267.86%)
Mutual labels:  netlify, website
Cordova Docs
Apache Cordova Documentation
Stars: ✭ 315 (+1025%)
Mutual labels:  documentation, website
Typemill
TYPEMILL is a simple and lightweight Flat-File-CMS for authors and publishers.
Stars: ✭ 150 (+435.71%)
Mutual labels:  documentation, website
Rabbitmq Website
RabbitMQ website and documentation guides
Stars: ✭ 433 (+1446.43%)
Mutual labels:  documentation, website
Website
Yarn package manager website
Stars: ✭ 374 (+1235.71%)
Mutual labels:  documentation, website
Swagger Toolbox
💡 Swagger schema model (in yaml, json) generator from json data
Stars: ✭ 194 (+592.86%)
Mutual labels:  documentation, website
Reactjs.org
The React documentation website
Stars: ✭ 6,697 (+23817.86%)
Mutual labels:  documentation, website
Dvc.org
🔗 DVC website and documentation
Stars: ✭ 171 (+510.71%)
Mutual labels:  documentation, website
Hospitalrun.io
HospitalRun website
Stars: ✭ 109 (+289.29%)
Mutual labels:  netlify, website
Jenkins.io
A static site for the Jenkins automation server
Stars: ✭ 165 (+489.29%)
Mutual labels:  documentation, website
Dlang.org
Pages for the dlang.org website, home of the D Programming Language
Stars: ✭ 274 (+878.57%)
Mutual labels:  documentation, website
Elementsproject.org
Source code for the ElementsProject.org website
Stars: ✭ 84 (+200%)
Mutual labels:  documentation, website
Lodash.com
The Lodash website.
Stars: ✭ 119 (+325%)
Mutual labels:  documentation, website
Documentation Html Template
A Sample Documentation Template for Themes, Templates and Plugins
Stars: ✭ 322 (+1050%)
Mutual labels:  documentation, website
Docusaurus
Easy to maintain open source documentation websites.
Stars: ✭ 29,053 (+103660.71%)
Mutual labels:  documentation, website

Docs Like Code

The Website

This website is intended to offer stories and articles about how to treat docs like code, and lessons learned along the way. You are welcome to tell your story here as well.

To Contribute

You can directly submit a pull request using the fork-and-pull workflow to add an article, or submit to the justwriteclick/docs-like-code-stories repo if you want to follow a question-and-answer template.

Pushing to the build branch lets you preview the build output using Netlify. You must log into Netlify to view the preview deploy.

Pushing to the master branch builds output to https://www.docslikecode.com using Netlify. Auto publishing is on as a setting in Netlify, so deploys from master are published automatically.

Theme Colophon

Theme courtesy of https://mmistakes.github.io/so-simple-theme/

To Build Locally (MacOS)

Test your additions and changes to content by running a local build.

On macOS you need to install brew, bundler.io, and Ruby version manager so that you can use a particular version of Ruby:

  1. Use brew to install a Ruby version manager.

    $ brew install rbenv ruby-build
    
  2. Add rbenv to bash so that it loads every time you open a terminal. If you are using macOS Catalina, your profile file may be .zshrc.

    $ echo 'if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi' >> ~/.bash_profile
    

    or

    $ echo 'if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi' >> ~/.zshrc
    
  3. Source your .bash_profile file. If you are using macOS Catalina, your profile file may be .zshrc.

    $ source ~/.bash_profile
    

    or

    $ source ~/.zshrc
    
  4. Install the required Ruby version:

    $ rbenv install 2.7.1
    $ rbenv global 2.7.1
    $ rbenv version
    

    In return, you should see ruby 2.7.1 2.7.1 (set by /Users/username/docslikecode/.ruby-version.

  5. Run gem install bundle to install the bundler gem, which helps with Ruby dependencies.

  6. Run bundle install the first time you are in the docslikecode directory.

To build locally: Once you have completed preparing your environment, then you can build locally and review the site in your browser.

  1. Run the serve command.

    $ bundle exec jekyll serve
    
  2. Use the Server address URL http://127.0.0.1:4000/ in a browser to preview the content.

  3. Press Ctrl+C in the serve terminal to stop the server.

Tip
Leave the serve terminal open and running. Every time you save changes to a file, it automatically regenerates the site so you can test the output immediately. The only file where changes require a restart is the _config.yml file.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].