A minimal starter pack for web sites development.
This is a minimal starter pack for web sites development.
It involves the use of:
To use this starter pack you need to install the following libraries in your local environment. Many of these will have to be installed by the terminal. Make sure you are in your user path (run the “cd” command first to be sure).
Click here and follow the install instructions.
Run the following commands:
sudo npm install -g bower
Run the following commands:
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('SHA384', 'composer-setup.php') === 'e115a8dc7871f15d853148a7fbac7da27d6c0030b848d9b3dc09e2a0388afed865e6a3d6b3c0fad45c48e2b5fc1196ae') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php
php -r "unlink('composer-setup.php');"
Run the following commands:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Click here and follow the install instructions.
Run the following commands:
sudo gem install sass
Run the following commands:
sudo gem install compass
Run the following commands:
sudo gem install susy
First installation
Open the directory in the terminal. Run the command npm init
and answer to the questions about the package’s informations.
Afterward it, launch the npm install
command. It will install Grunt and all its modules.
Note: for install a new Grunt module, run
npm install [module-name] --save-dev
and remember to add and configure it in the Gruntfile.js.Tip: to making sure that your NodeJS modules are up to date, run
npm update
.
Started project
Open the directory in the terminal. Run the npm install
command.
First installation
Open the directory in the terminal. Run the command bower init
and answer to the questions about the package’s informations.
For install a JavaScript or CSS library, run bower install [library-name] --save
.
Started project
Open the directory in the terminal. Run the bower install
command.
First installation
If you need to install a PHP library make sure it is recorded on Packagist and install it with the command composer require [vendor/package]
Tip: to making sure that your PHP libraries are up to date, run
composer update
.
Started project
Open the directory in the terminal. Run the composer install
command.
Licensed under MIT.