Mariana Lopez
❔ You must install or update .NET to run this application.
Then run the migration plan
dotnet ef database update
The database script will create an empty database with some seed data.
Then you have to create the app_user in the database with the following script:
create user app_user with password '123456';
grant select, insert, update, delete on all tables in schema public to app_user;
grant usage on all sequences in schema public to app_user;
69 replies
❔ You must install or update .NET to run this application.
the developer of the project told me this:
[7:13 PM, 7/9/2023] Carlos Martínez Australia: It works with any version of NET Core greater or equal than 6
[7:14 PM, 7/9/2023] Carlos Martínez Australia: in the folder "src" if you run "dotnet build" you should get something like the screenshot... (did you manage to run the program in the Mac?)
69 replies
❔ You must install or update .NET to run this application.
C:\Users\user\Desktop\Alexis\pyme-click-serverless-web-api\src\PymeClick.Domain>dotnet ef database update
Build started...
Build succeeded.
You must install or update .NET to run this application.
App: C:\Users\user.dotnet\tools.store\dotnet-ef\7.0.8\dotnet-ef\7.0.8\tools\net6.0\any\tools\netcoreapp2.0\any\ef.dll
Architecture: x64
Framework: 'Microsoft.AspNetCore.App', version '6.0.0' (x64)
.NET location: C:\Program Files\dotnet\
The following frameworks were found:
7.0.8 at [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
69 replies