Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/billowdev/cs-iron-pdf
https://github.com/billowdev/cs-iron-pdf
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/billowdev/cs-iron-pdf
- Owner: billowdev
- Created: 2024-08-29T03:42:50.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-08-29T08:37:01.000Z (4 months ago)
- Last Synced: 2024-11-08T09:44:23.297Z (about 2 months ago)
- Language: C#
- Size: 146 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CommonPDFServices
## start project
- new services command (create the project)
```bash
dotnet new webapi -n CommonPDFServices
```
## Package
```bash
dotnet add package IronPdf
``````bash
dotnet add package DotNetEnv
```# RUN BY DOT NET CLI
- Restore the project dependencies using the .NET CLI:
```
dotnet restore
```- Build the project to ensure everything is correctly set up:
```
dotnet build
```-Start the application using the .NET CLI:
```
dotnet run
```# RUB BY DOCKER
```bash
docker build -t common-pdf-services .
``````bash
docker run -d -p 8080:80 common-pdf-services
```