https://github.com/jetsup/dotnetcvgenerator
https://github.com/jetsup/dotnetcvgenerator
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jetsup/dotnetcvgenerator
- Owner: jetsup
- Created: 2024-11-20T16:54:35.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-11-25T12:41:59.000Z (6 months ago)
- Last Synced: 2025-01-27T10:43:54.812Z (4 months ago)
- Language: HTML
- Size: 26.7 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CVGenerator
## Description
This is a simple CV generator that takes input from the user and generates a downloadable PDF file.
## Installation
1. Clone the repository
```bash
https://github.com/jetsup/DotnetCVGenerator.git
```2. Install the dependencies
```bash
dotnet restore
```3. Edit the [appsettings.json](CVGenerator/appsettings.json) file to configure the database connection string.
```json
{
"ConnectionStrings": {
"Default": "Data Source=localhost;Initial Catalog=cv_generator;User ID=your_db_username;Password=your_db_password;Integrated Security=False;TrustServerCertificate=True;"
}
}
```For Windows users, you can use Windows Authentication by setting `Integrated Security=True` and removing the `User ID` and `Password` fields. For Linux users, you can use `User ID` and `Password` fields to connect to the database but the `Integrated Security` field should be explicitly set to `False` to avoid using kerberos authentication.
4. Apply the migrations
```bash
dotnet ef database update
```5. Run the application
```bash
dotnet run
```## Usage
READ THE INSTRUCTIONS PROVIDED IN THE README SECTION OF THE WEB APPLICATION.