Skip to content

Commit

Permalink
Minor updates to README files
Browse files Browse the repository at this point in the history
Minor updates to the backend README to remove usages of the words "we"
and "you". Clarification update to the overall README.
  • Loading branch information
Sahar committed May 10, 2024
1 parent f777e51 commit 737c2b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Welcome to Reimburse
This is a very quick project to demonstrate FastAPI and Next.js usage. It's a bank project that currently only implements reimbursements for one bank with random account numbers. It has minimal testing and validations.

The intructions written for this project assumes that the entire repository has been cloned/pulled down so that the code is accessible.

## Backend
Please see [backend/README.md](./backend/README.md) for how to use the backend program.

Expand Down
4 changes: 2 additions & 2 deletions backend/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Welcome to the backend
Here we have the database and endpoints to interact with the database. This README describes how the backend program would work without the project's frontend.
The database and endpoints to interact with the database are here. This README describes how the backend program would work without the project's frontend.

Currently only three endpoints are implemented. Many of tests are stubs and comments. One integeration test exists.

Expand All @@ -15,7 +15,7 @@ Run the following line to start the program:

`python3 -m uvicorn src.main:app`

The homepage is at http://127.0.0.1:8000 but an endpoint does not currently exist for the homepage. To interact with the program, you can visit the following pages:
The homepage is at http://127.0.0.1:8000 but an endpoint does not currently exist for the homepage. To interact with the program, visit the following pages:

1. Go to http://127.0.0.1:8000/reimbursements to see a list of reimbursements. By default, the program adds three random reimbursements.
2. Go to http://127.0.0.1:8000/docs to see the three current endpoints and test them out. http://127.0.0.1:8000/redoc can also be used to see the endpoint details.
Expand Down

0 comments on commit 737c2b9

Please sign in to comment.