- Clone this repo
- Create
appsettings.development.json
- Copy contents of
appsettings.json
(at least the empty settings) intoappsettings.development.json
- Populate
appsettings.development.json
- Example connection strings:
- local:
Server=.;Database=Jellypic;Integrated Security=SSPI;MultipleActiveResultSets=true
- Azure: get from Azure Portal
- local:
- Example connection strings:
- Open Package Manager Console
- Run database migrations by executing this command:
update-database
- Run the project and use the GraphQL Playground here: https://localhost:44340/ui/playground
OR
- Clone jellypick-app and use it for UI
- After making changes to entities, run the following command in package manager console:
add-migration <migration name>
update-database