Update readme & fix console permission

This commit is contained in:
Jeremy Benoist 2016-01-15 09:34:09 +01:00
parent 1fc8ed8794
commit c7f622d369
4 changed files with 11 additions and 13 deletions

View file

@ -16,12 +16,11 @@ If you don't have it yet, please [install composer](https://getcomposer.org/down
``` ```
composer create-project wallabag/wallabag wallabag 2.0.0-alpha.1 composer create-project wallabag/wallabag wallabag 2.0.0-alpha.1
cd wallabag php bin/console wallabag:install
php app/console wallabag:install php bin/console server:run
php app/console server:run
``` ```
## License ## License
Copyright © 2013-2015 Nicolas Lœuillet <nicolas@loeuillet.org> Copyright © 2013-2016 Nicolas Lœuillet <nicolas@loeuillet.org>
This work is free. You can redistribute it and/or modify it under the This work is free. You can redistribute it and/or modify it under the
terms of the MIT License. See the COPYING file for more details. terms of the MIT License. See the COPYING file for more details.

0
bin/console Normal file → Executable file
View file

View file

@ -14,22 +14,22 @@
<testsuites> <testsuites>
<testsuite name="wallabag Test Suite"> <testsuite name="wallabag Test Suite">
<directory>./src/Wallabag/*Bundle/Tests</directory> <directory>src/Wallabag/*Bundle/Tests</directory>
</testsuite> </testsuite>
</testsuites> </testsuites>
<php> <php>
<server name="KERNEL_DIR" value="./app/" /> <server name="KERNEL_DIR" value="app/" />
</php> </php>
<filter> <filter>
<whitelist> <whitelist>
<directory>./src</directory> <directory>src</directory>
<exclude> <exclude>
<directory>./vendor</directory> <directory>vendor</directory>
<directory>./src/Wallabag/*Bundle/Resources</directory> <directory>src/Wallabag/*Bundle/Resources</directory>
<directory>./src/Wallabag/*Bundle/Tests</directory> <directory>src/Wallabag/*Bundle/Tests</directory>
<directory>./src/Wallabag/*Bundle/DataFixtures</directory> <directory>src/Wallabag/*Bundle/DataFixtures</directory>
</exclude> </exclude>
</whitelist> </whitelist>
</filter> </filter>

View file

@ -12,7 +12,6 @@ use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Question\ConfirmationQuestion; use Symfony\Component\Console\Question\ConfirmationQuestion;
use Symfony\Component\Console\Question\Question; use Symfony\Component\Console\Question\Question;
use Wallabag\CoreBundle\Entity\Config; use Wallabag\CoreBundle\Entity\Config;
use Wallabag\UserBundle\Entity\User;
class InstallCommand extends ContainerAwareCommand class InstallCommand extends ContainerAwareCommand
{ {
@ -56,7 +55,7 @@ class InstallCommand extends ContainerAwareCommand
; ;
$output->writeln('<info>Wallabag has been successfully installed.</info>'); $output->writeln('<info>Wallabag has been successfully installed.</info>');
$output->writeln('<comment>Just execute `php app/console server:run` for using wallabag: http://localhost:8000</comment>'); $output->writeln('<comment>Just execute `php bin/console server:run` for using wallabag: http://localhost:8000</comment>');
} }
protected function checkRequirements() protected function checkRequirements()