Link to project diagram: https://www.figma.com/file/XQxeE5fQXhJE8QH4qGUTdu/PiMI-Connect?type=whiteboard&node-id=0-1&t=LbNPEUyWQQIx3t2h-0
- Download and install .NET 8 (take a note that if you are using Visual Studio, then it has to be in version 2022, otherwise .net sdk might not work properly),
- Install Entity Framework Core,
- Download and install PostgreSQL.
- Use whatever code editor you like for example: Visual Studio, Visual Studio Code, Rider etc.,
- For sending requests to API you can download and install Postman,
- For browsing the database you can download and install DBeaver.
- Clone repository:
git clone https://github.com/grupadotnet/pimi-connect-api.git
cd pimi-connect-api/pimi-connect-api/pimi-connect-api.API/
- In
pimi-connect-api.API/
directory create the following files:
appsettings.json
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"pimi-connect-postgresql": "Host=localhost; Port=5432; Database=pimi-connect; Username=postgres; Password=password123"
}
}
appsettings.Tests.json
{
"ConnectionStrings": {
"pimi-connect-postgresql-test": "Host=localhost; Port=5432; Database=pimi-connect-test; Username=postgres; Password=password123"
},
"TestSettings": {
"EntitiesCount": 6,
"ConnectionStringName": "pimi-connect-postgresql-test",
"MigrationsAssemblyName": "pimi-connect-api.API"
}
}
You can also copy example files from root directory to ./pimi-connect-api/pimi-connect-api.API
- In project's root directory run:
cp appsettings_example.json ./pimi-connect-api/pimi-connect-api.API/appsettings.json
cp appsettings_example.Tests.json ./pimi-connect-api/pimi-connect-api.API/appsettings.Tests.json
Change the ConnectionStrings
according to your PostgreSQL configuration.
- Create databases (
/pimi-connect-api/pimi-connect-api.API
):
dotnet ef database update
dotnet ef database update --configuration Tests
- Run the project:
dotnet run
You can alternatively run PostgreSQL with docker.
- Run with command
docker run --name pimi-connect-postgresql \
-p 5432:5432 \
-e POSTGRES_PASSWORD=password123 \
-d postgres:latest
- Run with docker compose - in project's root directory run
docker compose up -d