This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- ============================================================================= | |
| -- MyRestoClub MVP Schema Migration | |
| -- ============================================================================= | |
| -- Safe to run on existing database. Uses IF NOT EXISTS, IF EXISTS, and DO | |
| -- blocks for all renames/drops to be idempotent. | |
| -- ============================================================================= | |
| -- --------------------------------------------------------------------------- | |
| -- 1. ALTER club_clubs | |
| -- --------------------------------------------------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Desktop Entry] | |
| Name=Postman | |
| StartupWMClass=Postman | |
| Comment=Postman Desktop | |
| GenericName=Postman for Linux | |
| Exec=/usr/bin/Postman/Postman %U | |
| Type=Application | |
| Icon=/usr/bin/Postman/app/resources/app/assets/icon.png |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Get Host IP Address | |
| ip addr show docker0 | grep -Po 'inet \K[\d.]+' | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM mcr.microsoft.com/dotnet/core/aspnet:2.2 AS base | |
| WORKDIR /app | |
| EXPOSE 80 | |
| # DEBUG | |
| FROM mcr.microsoft.com/dotnet/core/sdk:2.2 AS debug | |
| WORKDIR /app |