mirror of
https://github.com/overleaf/toolkit.git
synced 2025-04-19 15:28:06 +02:00
init script, skeleton
This commit is contained in:
parent
8f2a7e0af3
commit
d6601a7d07
1 changed files with 15 additions and 0 deletions
15
bin/init
Executable file
15
bin/init
Executable file
|
@ -0,0 +1,15 @@
|
|||
#! /usr/bin/env bash
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
function set_up_config_files() {
|
||||
cp ./examples/docker-compose.yml ./config/docker-compose.yml
|
||||
cp ./examples/local.yml ./config/local.yml
|
||||
cp ./variables.env ./config/variables.env
|
||||
}
|
||||
|
||||
function __main__() {
|
||||
set_up_config_files
|
||||
}
|
||||
|
||||
__main__ "$@"
|
Loading…
Add table
Add a link
Reference in a new issue