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
|
# Copyright 2022 Oliver Cope
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import pathlib
import logging
import sys
from yoyo.config import CONFIG_FILENAME
from yoyo.scripts.main import save_config
logger = logging.getLogger("yoyo.migrations")
def install_argparsers(global_parser, subparsers):
parser = subparsers.add_parser(
"init", parents=[global_parser], help="Initialize a new project"
)
parser.set_defaults(func=init)
parser.add_argument("sources", nargs=1, help="Directory for migration scripts")
parser.add_argument(
"-d",
"--database",
help="Database, eg 'sqlite:///path/to/sqlite.db' "
"or 'postgresql://user@host/db'",
)
def init(args, config) -> int:
if args.config:
configpath = pathlib.Path(args.config)
else:
configpath = pathlib.Path.cwd() / CONFIG_FILENAME
migrations_path = pathlib.Path(args.sources[0]).resolve()
if configpath.exists():
print("Existing configuration file found, exiting", file=sys.stderr)
return 1
save_config(config, configpath)
print(f"Saved configuration to {configpath}")
if not migrations_path.exists():
migrations_path.mkdir(exist_ok=True, parents=True)
print(f"Created migrations directory {migrations_path}")
return 0
|