Skip to content

voqk/Fooston

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

71 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dependencies

Install the following dependencies to compile and run Fooston.com locally

App setup

  1. Open a command terminal in the FoostonWeb directory and run

    npm install

Database setup

  1. Create PostgreSQL role
  2. Create Database with owner set to role in step 1
  3. Copy appsettings.json to appsettings.development.json
  4. Add connection string to database in appsettings.Development.json
"ConnectionStrings": {
	"FoostonDb": "User ID=[role];Password=[password];Host=localhost;Port=5432;Database=[database];"
}
  1. Open a command terminal in the FoostonWeb directory and run the following commands

    dotnet restore
    dotnet ef database update

Tools

Stuff I use to work on this site

DB Administration

  • pgAdmin III (free) - possibly installed with PostgreSQL
  • DataGrip

IDE Suggestions