LoginSignup
0
1

More than 5 years have passed since last update.

The beginning of BEAR.Sunday on Ubuntu.

Posted at

Install and Hello world.

sudo add-apt-repository ppa:ondrej/php5
sudo aptitude update
sudo aptitude install php5-common php5-dev php5-xdebug php5-sqlite php-apc pkg-php-tools
curl -sS https://getcomposer.org/installer | php
sudo mv composer.phar /usr/local/bin/composer
sudo pecl install xhprof-beta
composer create-project bear/package my_package dev-develop
cd apps/Demo/Helloworld/var/www/
php -S 0.0.0.0:8088 index.php

Screen Shot 2013-12-31 at 0.33.14.png

ctrl + c

Also Sandbox.

cd ../../../Sandbox/var/www
php -S 0.0.0.0:8088 index.php

Screen Shot 2013-12-31 at 0.29.41.png

ctrl + c

See also:

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1