Skip to content

Commit

Permalink
docs: Add contribution section to index
Browse files Browse the repository at this point in the history
  • Loading branch information
MrDave1999 committed May 31, 2024
1 parent 13f1f9f commit 8164945
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ DentallApp is a web application with chatbot for appointment management, reminde
- [Direct Line API](#direct-line-api)
- [EF Core Migrations](#ef-core-migrations)
- [Running tests](#running-tests)
- [Contribution](#contribution)

## Important

Expand Down Expand Up @@ -391,4 +392,16 @@ cp ./tests/IntegrationTests/.env.test.example ./tests/IntegrationTests/.env.test
dotnet test ./tests/IntegrationTests/DentallApp.IntegrationTests.csproj -c Release
```

> The database credentials you have in the ".env" file may not necessarily be the same as those in the ".env.test" file. For example, the ".env" file may have credentials from a remote AWS database and run the application on your local machine with that connection string.
> The database credentials you have in the ".env" file may not necessarily be the same as those in the ".env.test" file. For example, the ".env" file may have credentials from a remote AWS database and run the application on your local machine with that connection string.
## Contribution

Any contribution is welcome! Remember that you can contribute not only in the code, but also in the documentation or even improve the tests.

Follow the steps below:

- Fork it
- Create your custom branch (git checkout -b my-new-change)
- Commit your changes (git commit -am 'Add some change')
- Push to the branch (git push origin my-new-change)
- Create new Pull Request

0 comments on commit 8164945

Please sign in to comment.