PostlyApi is a .NET Web API written as a part of a University Project. It serves as the Backend of PostlyWebpage and PostlyApp. The goal of the project was to create a microblogging plattform.
To run the project a file called secrets.json has to be placed in inside the PostlyApi directoy with the database password and a JWT-secret with the following format:
{
"dbPassword": "MY_DB_PASSWORD",
"Jwt": {
"Secret": "MY_JWT_SECRET"
}
}Code documentation can be generated using doxygen and the provided Doxyfile. To do so run doxygen inside the root directory.