Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
leepeuker committed Jul 15, 2022
1 parent 8c11bec commit ef1395d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ volumes:
- Run database migrations: `docker exec movary php bin/console.php database:migration --migrate`
- Create a user: `docker exec movary php bin/console.php user:create [email protected] your-password`

List all available cli commands: `docker exec movary php bin/console.php movary`
List all available cli commands: `docker exec movary php bin/console.php`

##### Available environment variables with defaults:

Expand Down
2 changes: 1 addition & 1 deletion bin/console.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
$application = $container->get(Symfony\Component\Console\Application::class);
$application->add($container->get(Movary\Command\SyncTrakt::class));
$application->add($container->get(Movary\Command\SyncTmdb::class));
$application->add($container->get(Movary\Command\SyncLetterboxd::class));
// $application->add($container->get(Movary\Command\SyncLetterboxd::class));
$application->add($container->get(Movary\Command\DatabaseMigration::class));
$application->add($container->get(Movary\Command\UserCreate::class));
$application->add($container->get(Movary\Command\UserDelete::class));
Expand Down

0 comments on commit ef1395d

Please sign in to comment.