Skip to content

jimbarrett147/boilerplates

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Boilerplates Logo

Welcome Build Status

This is my personal Yeoman. A jumpstart for my projects.

TODO LIST: https://github.com/vitorbritto/boilerplates/issues/

Getting Started

STEP 01: Requirements and Installation

First of all, make sure you have Node.js installed.

# 1. Clone this repository and access the generated folder
$ git clone git://github.com/vitorbritto/boilerplates.git [project-name]
$ cd [project-name]

# 2. Install dependencies and make the script executable
$ npm install

STEP 02: Execute the program

# Conventional Method
$ node newproject

----- OR -----

# Executable Script
$ chmod u+x newproject.js
$ ./newproject.js

STEP 03: Profit! :)

Note: chmod is an UNIX command, not present in CMD/MS-DOS.

Bonus

Place this Bash Function in your .bashrc file.

# Start a new project
new() {
    printf "→ Setting up your new project\n"
    git clone git://github.com/vitorbritto/boilerplates.git $1
    cd $1

    printf "→ Installing dependencies\n"
    npm install
    clear

    printf "\n→ Initializing...\n"
    node newproject
}

Usage: new [project-folder-name]

Boilerplates

License

MIT License © Vitor Britto

About

This is my personal Yeoman. A simple jumpstart for my projects

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 47.8%
  • CSS 16.9%
  • PHP 16.7%
  • HTML 14.1%
  • Shell 2.0%
  • Ruby 1.3%
  • Other 1.2%