Gig Local website, an ASP.NET Core web app.
-
Install Docker Desktop.
-
Install VS Code.
-
Install Remote Development extension pack for VS Code.
-
Install latest .NET 6.0 SDK.
-
Generate a self-signed HTTPS certificate for your system:
- macOS/Linux (Terminal):
dotnet dev-certs https --trust; dotnet dev-certs https -ep "${HOME}/.aspnet/https/aspnetapp.pfx" -p "SecurePwdGoesHere"
- Windows (PowerShell):
dotnet dev-certs https --trust; dotnet dev-certs https -ep "$env:USERPROFILE/.aspnet/https/aspnetapp.pfx" -p "SecurePwdGoesHere"
- macOS/Linux (Terminal):
-
Get a copy of the
secrets.json
file from the repository owner, and place at:- macOS/Linux:
~/.microsoft/usersecrets/91188907-dc75-4aae-8f00-39a6949edd1a/secrets.json
. - Windows:
~/Microsoft/UseSecrets/91188907-dc75-4aae-8f00-39a6949edd1a/secrets.json
.
- macOS/Linux:
- Start Docker and wait for it to be ready
- Clone/Open this repository in VS Code
- Click
Reopen in Container
on the popup, and wait for the container to finish building - F5 to run the website
Gig Local source code is licensed under the MIT License.