Skip to content

Instantly share code, notes, and snippets.

@michaelmano
Last active March 7, 2018 01:30
Show Gist options
  • Save michaelmano/8d2c528d918a7ea372fb4bf38c21139a to your computer and use it in GitHub Desktop.
Save michaelmano/8d2c528d918a7ea372fb4bf38c21139a to your computer and use it in GitHub Desktop.
New Project Readme

Project Name

alt text

Short Description

Table of Contents

Folder Structure.

project-name/
_____________________________
|-- assets/
|   |-- images/
|   |   `-- favicons/
|   |-- js
|   |-- sass
|   `-- media/
|-- core/
|   |-- assets/
|   |-- project-name-activation.php
|   |-- project-name-functions.php
|   `-- project-name-settings.php
|-- CHANGELOG.md
|-- LICENSE.md
`-- README.md

** For a print out like the above you can use the shell script below **

#!/bin/bash

SEDMAGIC='s;[^/]*/;|____;g;s;____|; |;g'

if [ "$#" -gt 0 ] ; then
   dirlist="$@"
else
   dirlist="."
fi

for x in $dirlist; do
     find "$x" -print | sed -e "$SEDMAGIC"
done

Development

Project Development description.

Installing

Project Development installation description.

Production

Production description.

Releases

Production Releases description.

TODO

  • TODO list item
  • TODO list item
  • TODO list item
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment