aboutsummaryrefslogtreecommitdiffstats
path: root/license-generator/.env.sample
blob: 1361c98ec909c6c8d408470671dd6faf3e618883 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# Copyright (c) 2018  Teddy Wing
#
# This file is part of DomeKey Web.
#
# DomeKey Web is free software: you can redistribute it and/or modify it
# under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# DomeKey Web is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public
# License along with DomeKey Web. If not, see
# <https://www.gnu.org/licenses/>.

export LOG_FILE=""

export DATABASE_NAME=""
export DATABASE_USER=""
export DATABASE_PASSWORD=""

export DATABASE_URL="mysql://localhost:3306/dome_key"

export GO_DATABASE_URL="mysql://tcp(localhost:3306)/dome_key"

export SSH_SERVER="user@host"
export REMOTE_PUBLIC_WWW="/home/user/www"


function migrate-create () {
	local migration_name="$1"

	migrate \
		-path migrations \
		-database "$GO_DATABASE_URL" \
		create \
		-ext sql \
		-format '20060102150405' \
		"$migration_name"

	mv *.sql migrations/
}

function migrate-goto () {
	local version="$1"

	migrate \
		-path migrations \
		-database "$GO_DATABASE_URL" \
		goto \
		"$version"
}

function migrate-up () {
	local count="$1"

	migrate \
		-path migrations \
		-database "$GO_DATABASE_URL" \
		up \
		"$count"
}

function migrate-down () {
	local count="$1"

	migrate \
		-path migrations \
		-database "$GO_DATABASE_URL" \
		down \
		"$count"
}

function migrate-drop () {
	migrate \
		-path migrations \
		-database "$GO_DATABASE_URL" \
		drop
}

function migrate-force () {
	local version="$1"

	migrate \
		-path migrations \
		-database "$GO_DATABASE_URL" \
		force \
		"$version"
}

function migrate-version () {
	migrate \
		-path migrations \
		-database "$GO_DATABASE_URL" \
		version
}