Repository: openopensource/openopensource.github.io Branch: master Commit: fc85a90c63d1 Files: 8 Total size: 5.7 KB Directory structure: gitextract_lsq6gp2w/ ├── .gitignore ├── Makefile ├── Readme.md ├── foot.html ├── head.html ├── index.html ├── package.json └── style.css ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ node_modules npm-debug.log ================================================ FILE: Makefile ================================================ prepublish: index.html start: prepublish http-server index.html: Readme.md head.html foot.html package.json Makefile cat head.html > build.html ## Change to This sed 's/<project name>/This/g' Readme.md >> build.md marked -i build.md >> build.html rm build.md cat foot.html >> build.html mv build.html index.html clean: -rm index.html -rm build.html .PHONY: prepublish start clean ================================================ FILE: Readme.md ================================================ # <project name> is an [OPEN Open Source Project](https://openopensource.github.io/) ----------------------------------------- ## What? Individuals making significant and valuable contributions are given commit-access to the project to contribute as they see fit. This project is more like an open wiki than a standard guarded open source project. ## Rules There are a few basic ground-rules for contributors: 1. **No `--force` pushes** or modifying the Git history in any way. 1. **Non-main branches** ought to be used for ongoing work. 1. **External API changes and significant modifications** ought to be subject to an **internal pull-request** to solicit feedback from other contributors. 1. Internal pull-requests to solicit feedback are *encouraged* for any other non-trivial contribution but left to the discretion of the contributor. 1. Contributors should attempt to adhere to the prevailing code-style. ## Releases Declaring formal releases remains the prerogative of the project maintainer. ## Changes to this arrangement This is an experiment and feedback is welcome! This document may also be subject to pull-requests or changes by contributors where you believe you have something valuable to add or change. Get a copy of this manifesto as [markdown](https://raw.githubusercontent.com/openopensource/openopensource.github.io/master/Readme.md) and use it in your own projects. ================================================ FILE: foot.html ================================================ ================================================ FILE: head.html ================================================ OPEN Open Source Fork me on GitHub ================================================ FILE: index.html ================================================ OPEN Open Source Fork me on GitHub

This is an OPEN Open Source Project


What?

Individuals making significant and valuable contributions are given commit-access to the project to contribute as they see fit. This project is more like an open wiki than a standard guarded open source project.

Rules

There are a few basic ground-rules for contributors:

  1. No --force pushes or modifying the Git history in any way.
  2. Non-main branches ought to be used for ongoing work.
  3. External API changes and significant modifications ought to be subject to an internal pull-request to solicit feedback from other contributors.
  4. Internal pull-requests to solicit feedback are encouraged for any other non-trivial contribution but left to the discretion of the contributor.
  5. Contributors should attempt to adhere to the prevailing code-style.

Releases

Declaring formal releases remains the prerogative of the project maintainer.

Changes to this arrangement

This is an experiment and feedback is welcome! This document may also be subject to pull-requests or changes by contributors where you believe you have something valuable to add or change.

Get a copy of this manifesto as markdown and use it in your own projects.

================================================ FILE: package.json ================================================ { "name": "openopensource.github.io", "version": "0.0.0", "description": "https://openopensource.github.io/", "scripts": { "prepublish": "make prepublish", "start": "make start", "clean": "make clean" }, "devDependencies": { "http-server": "^0.8.0", "marked": "^0.3.3" } } ================================================ FILE: style.css ================================================ html, body { margin: 0; padding: 0; } body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-family: 'Ubuntu', sans-serif; background: #f0f0f8; color: #404050; max-width: 800px; max-width: 40vw; margin: 0 auto; font-weight: 300; font-size: 1.2em; } h1 { letter-spacing: 0.2em; text-align: center; max-width: 700px; margin: 1em auto; } a { color: #4cb5ff; text-decoration: none; } a:hover { color: #acd5ff; }