Thanks to visit codestin.com
Credit goes to github.com

Skip to content

jManniCode/crm-site-testing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CRM-Project

Setup

Install dependencis

  • In the terminal, open client and run "npm install".
  • In the terminal, open server and run "dotnet restore".

Database

  • Create an PostgreSQL database, open a query console, copy the script from "Database-Script.sql" and run it.
  • Go in to the Database.cs and add your PostgreSQL connection information.

Example

private readonly string _host = "localhost";
private readonly string _port = "5432";
private readonly string _username = "postgres";
private readonly string _password = "password";
private readonly string _database = "crm-site";

Email

  • In server, open the appsettings.json and configure the "Email"-object. You need to sett the email and password for the "Email".

Example

"Email": {
    "SmtpServer": "smtp.gmail.com", // If your not using a gmail, you need to configure this.
    "SmtpPort": 587, 
    "FromEmail": "your-email",
    "Password": "your-password"
  }

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published