Skip to content

Commit

Permalink
removed un-needed $ from commands (#908)
Browse files Browse the repository at this point in the history
Copying the commands with $ at the start does not work. In other examples, $ is not added to represent shell.
  • Loading branch information
eddietejeda authored and tbaxter-18f committed Jul 22, 2019
1 parent 7781393 commit 5801541
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/local-development.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
1. Run:

```shell
$ docker-compose build
$ docker-compose run app python manage.py migrate
$ docker-compose run app python manage.py loaddata test_data/data-update-deduped.json
$ docker-compose run app \
docker-compose build
docker-compose run app python manage.py migrate
docker-compose run app python manage.py loaddata test_data/data-update-deduped.json
docker-compose run app \
python manage.py \
createsuperuser \
--username admin.user \
Expand Down

0 comments on commit 5801541

Please sign in to comment.