This project is the backend of the PokeCharts application. It is developped in C# .NET Our data are coming from the PokeAPI.
Version | Description |
---|---|
Dotnet 7.0.101 | For code execution |
git clone git@github.com:yannickcpnv/PokeCharts-Backend.git
cd PokeCharts-Backend
git switch develop
We use the console provided by PokeAPI to test our graphql queries.
Build the firstime you download the repository
dotnet build
dotnet run
To simply check that all tests pass
dotnet test
To get the test details
dotnet test --logger:"console;verbosity=detailed"
Refer to the workflow GitFlow.
GitFlow installation:
Main branches description:
Branches | Description |
---|---|
main/ | stores the official release history |
develop/ | serves as an integration branch for features |
feature/ | fork of develop/ for a new feature |
release/ | fork of develop/ , once the release is ready, it should be merge to main |
The convention name for feature/
is Snake Case
Example: feature/my_new_feature
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (git checkout -b feature/amazing_feature)
- Commit your Changes (git commit -m 'Add some amazing_feature')
- Push to the Branch (git push origin feature/amazing_feature)
- Open a Pull Request
Distributed under the MIT License. See LICENSE for more information.