/PartyGuide

Provides a simple Web UI to find party games to play

Primary LanguageC#

PartyGuide

Infrastructure

Build the Docker Image

docker build -t party-guide .

Save the docker image to a tarball

docker save -o party-guide.tar party-guide

SCP the tarball to the Raspberry Pi

scp party-guide.tar pi@192.168.1.209:/home/pi/party-guide/images/

On the Raspberry Pi:

docker load --input party-guide.tar

Migrations

To add a migration

dotnet ef migrations add MigrationName -o Persistence/Migrations

To run the migration in, run the application in Development mode.