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
| export script_name = "DependencyControl Toolbox" | |
| export script_description = "Provides DependencyControl maintenance and configuration tools." | |
| export script_version = "0.1.5" | |
| export script_author = "line0" | |
| export script_namespace = "l0.DependencyControl.Toolbox" | |
| DepCtrl = require "l0.DependencyControl" | |
| depRec = DepCtrl feed: "https://raw.githubusercontent.com/TypesettingTools/DependencyControl/master/DependencyControl.json" | |
| logger = DepCtrl.logger | |
| logger.usePrefixWindow = false |
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
| #!/bin/bash | |
| set -e | |
| set -o pipefail | |
| # ====== COLORS ====== | |
| BOLD="\e[1m" | |
| RESET="\e[0m" | |
| RED="\e[31m" | |
| GREEN="\e[32m" |
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
| version: '3.1' | |
| services : | |
| db: | |
| image: postgres:13-alpine | |
| ports: | |
| - "5432:5432" | |
| environment: | |
| POSTGRES_USER: admin | |
| POSTGRES_PASSWORD: admin | |
| POSTGRES_DB: db |