Chimpcom is a command line website built on the Laravel framework.
Chimpcom was originally made in 2009 but this repository is a complete re-write started on 29th August 2015.
command param1 param2 -f --flag @name #tag
Chimpcom syntax is pretty basic. The command name goes first. Any word after that is either a parameter, a flag, a name or a tag.
The parameters are read in order, regardless of position and there are currently no named parameters, so the following are equivalent:
command param1 param2 --flag
command param1 --flag #tag param2
Flags are either set or not. Flags can be short -f
or long --flag
.
You can refer to other Chimpcom users in some commands with Twitter-like @name syntax
.
You can use tags in some commands with #hashtag
syntax.
- Composer
- Node
- Gulp
- Bower
- Set up a PHP web server
- Get code
- Point your server at
/public
composer install
php artisan migrate
You'll need Node, Grunt and Bower.
yarn install
Get dev toolsyarn dev
Compile everythingyarn watch
Watch for changes to code and recompileyarn production
Compile everything for production
To generate Chimpcom docs, install phpdoc then run:
makedocs.sh
You'll want the Laravel docs, too.