hi sorry for the late response, this issue has been asked a couple of times. can you check this post https://support.abp.io/QA/Questions/69/#answer-d8bebebb-b714-3c1e-7fcb-39f437bc8ba3 also this https://support.abp.io/QA/Questions/1471/containerizing-abp-application also https://support.abp.io/QA/Questions/1081/Deploy-abp-to-docker
in the first post, you mentioned that Column name is too long and it throws exception. That's the Oracle database rule. I think you should create the entity with name less than 30 chars.
please provide us the following steps to reproduce your issue
Close the ABP Suite if it's already running. Then install it again with the following commands.
abp suite remove
abp suite install --version 5.0.0-beta.3
duplicate of https://support.abp.io/QA/Questions/2031/Commercial-source-code-to-angular-package we have sent an email to you.
this is a 3rd party question and nothing to do with the ABP Framework. you can write a PDF just like you do in a standard ASP.NET Core application.
if you replaced the source-code then you can change it in your custom Lepton project. isn't that working?
hi,
please provide us more logs and details. what did go wrong?
you can use the same package for 4.4.3
Hello,
First run this command in the root of your angular project to generate a project for commercial-ui (it will update angular.json and tsconfig.json)
npx ng g lib commercial-ui
Then, replace the content of packages/commercial-ui with the attached code.
Add following two lines in both tsconfig.json
and tsconfig.prod.json
,
and remove "commercial-ui": ["dist/commercial-ui/commercial-ui", "dist/commercial-ui"]
statement from tsconfig.json which was generated by angular-cli
"compilerOptions": {
// ...
"paths": {
"@proxy": ["src/app/proxy/index.ts"],
"@proxy/*": ["src/app/proxy/*"],
"@volo/abp.commercial.ng.ui": ["projects/commercial-ui/src/public-api.ts"],
"@volo/abp.commercial.ng.ui/config": ["projects/commercial-ui/config/src/public-api.ts"]
}
}
You can remove "@volo/abp.commercial.ng.ui": "~5.0.0-beta.2",
from package.json as well.
We'll share the package source-code via email.