Skip to content

Commit

Permalink
fix cli and compose dev
Browse files Browse the repository at this point in the history
  • Loading branch information
vinicvaz committed Nov 20, 2023
1 parent 094b024 commit 7d99b2f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ services:
context: ./rest
dockerfile: Dockerfile
container_name: domino-rest
command: bash -c "alembic upgrade heads && python -m utils.populate_first_user && uvicorn main:app --reload --workers 1 --host 0.0.0.0 --port 8000"
command: bash -c "alembic upgrade heads && uvicorn main:app --reload --workers 1 --host 0.0.0.0 --port 8000"
ports:
- 8000:8000
environment:
Expand Down
3 changes: 2 additions & 1 deletion src/domino/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,8 @@ def cli_destroy_platform():
)
@click.option(
'--github-token',
prompt='Github token for access default pieces repositories',
prompt='Github token for access default pieces repositories.',
help='Github token for access default pieces repositories.',
default=get_github_token_pieces_from_config_or_env,
)
def cli_run_platform_compose(d, use_config_file, dev, debug, stop, github_token):
Expand Down

0 comments on commit 7d99b2f

Please sign in to comment.