Skip to content

Commit

Permalink
code review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenneth Kehl committed May 8, 2024
1 parent 87a0204 commit b79835d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -358,15 +358,17 @@ will not be a user in the database to link to the login.gov account you are usin
you will need to create that user in your database using the 'create-test-user' command.

Open two terminals pointing to the api project and then run these commands in the
respective terminals. Make sure the email address is the same one you are using in
login.gov and make sure your phone number is in the format 5555555555.
respective terminals.

(Server 1)
env ALLOW_EXPIRED_API_TOKEN=1 make run-flask

(Server 2)
poetry run flask command create-admin-jwt | tail -n 1 | pbcopy
poetry run flask command create-test-user --name="<Your Name>" --email="<email address>" --mobile_number="<your phone>" --password="<password>" --admin=True;
poetry run flask command create-test-user --admin=True;

Supply your name, email address, mobile number, and password when prompted. Make sure the email address
is the same one you are using in login.gov and make sure your phone number is in the format 5555555555.

If for any reason in the course of development it is necessary for your to delete your db
via the `dropdb` command, you will need to repeat these steps when you recreate your db.
Expand Down

0 comments on commit b79835d

Please sign in to comment.