diff --git a/README.md b/README.md index 1ef47b7..82914b6 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ To start a project: git clone git://github.com/robrighter/node-boilerplate.git mynewproject cd mynewproject - ./bin/initproject.sh + ./initproject.sh This will copy down all of the boilerplate files organize them appropriately and init a fresh new git repository within which you can build your next big thing. diff --git a/bin/initproject.sh b/initproject.sh similarity index 95% rename from bin/initproject.sh rename to initproject.sh index a4b3e76..818b2a8 100755 --- a/bin/initproject.sh +++ b/initproject.sh @@ -11,6 +11,7 @@ echo "Copying Markup and CSS BoilerPlate..." cp ./templates/app/server.js ./server.js cp ./templates/app/package.json ./package.json cp ./templates/app/.gitignore ./.gitignore +cp ./templates/app/config.json ./config.json curl https://raw.github.com/h5bp/html5-boilerplate/master/css/style.css > ./static/css/style.css cp ./templates/views/500.jade ./views/500.jade cp ./templates/views/404.jade ./views/404.jade diff --git a/config.json b/templates/app/config.json similarity index 100% rename from config.json rename to templates/app/config.json