aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Command/InstallCommand.php
Commit message (Collapse)AuthorAgeFilesLines
...
* Few phpDoc fixJeremy Benoist2016-01-031-1/+0
| | | | And some little mistakes
* Skipping PostgreSQL test that drop databaseJeremy Benoist2015-11-071-1/+6
| | | | | | For a not-clear reason, I can't properly drop the current database. Even if Doctrine made a special case for that (https://github.com/doctrine/dbal/pull/849). So instead of trying crazy things to achieve the test, better way is to skip test (too much wasted days ..)
* Re-enable test on doctrine commandJeremy Benoist2015-11-071-2/+2
| | | | | | It will slow down the whole test suite (because it'll use doctrine command). Remove unecessary `KernelTestCase`. Also rename `AbstractControllerTest` to `WallabagApiTestCase` for consistency.
* Fix database already exist detectionJeremy Benoist2015-11-071-0/+6
| | | | This is not the same message exception from MySQL & SQLite with Postgres.
* Fix deprecated helper in commandJeremy Benoist2015-11-061-21/+24
|
* material design for register/login/recover pagesNicolas Lœuillet2015-10-051-2/+3
|
* remove old implementation for login/register/recoverNicolas Lœuillet2015-10-031-1/+1
|
* Fix testsJeremy Benoist2015-09-121-2/+3
| | | | | | | Ensure that created use during install command will always be unique. We assume that the install command must be run to initialize a wallabag instance. NEVER to add more user. Also, use a better way to retrieve the real name of the database and not the one defined in parameters.yml (which isn't the same for test envi because the dbname isn't defined in parameters.yml but directly in config_test.yml)
* implement FosUserNicolas Lœuillet2015-09-111-0/+1
|
* CSJeremy Benoist2015-05-301-5/+5
|
* Ability to prefix tablesJeremy2015-04-011-2/+3
| | | | Will fix #799
* Add rss for entriesJeremy2015-03-311-0/+1
| | | | will fix #1000
* sqlite doesn't support getListDatabasesSQLJeremy2015-02-221-0/+11
|
* Improve install command & add testJeremy2015-02-221-63/+207
| | | | | | Also add fixtures for Config InstallCommand now check if database, schema are here and ask the user what to do (keep or trash & re-create)
* Handle default value for new userJeremy2015-02-221-5/+4
|
* Implement simple configJeremy2015-02-161-15/+7
|
* Update UserConfig schemaJeremy2015-02-161-6/+6
|
* rename User entityNicolas Lœuillet2015-02-061-2/+2
|
* New wallabag installerJeremy2015-02-011-0/+165
Instead of the legacy bin/install here is a symfony command that can initialize wallabag. There are still work to do on the requirements part (to be sure that wallabag can run like a charm). I've also added (but commented) the fixtures load part (which will need an extra doctrine package). We'll see that point later.