shipit-cli 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- shipit/__init__.py +0 -0
- shipit/assets/php/php.ini +103 -0
- shipit/cli.py +1281 -0
- shipit/generator.py +148 -0
- shipit/providers/base.py +68 -0
- shipit/providers/gatsby.py +64 -0
- shipit/providers/hugo.py +47 -0
- shipit/providers/laravel.py +74 -0
- shipit/providers/mkdocs.py +81 -0
- shipit/providers/node_static.py +65 -0
- shipit/providers/php.py +73 -0
- shipit/providers/python.py +104 -0
- shipit/providers/registry.py +26 -0
- shipit/providers/staticfile.py +61 -0
- shipit/version.py +5 -0
- shipit_cli-0.1.0.dist-info/METADATA +13 -0
- shipit_cli-0.1.0.dist-info/RECORD +19 -0
- shipit_cli-0.1.0.dist-info/WHEEL +4 -0
- shipit_cli-0.1.0.dist-info/entry_points.txt +2 -0
shipit/__init__.py
ADDED
|
File without changes
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
;; Based on https://github.com/php/php-src/blob/master/php.ini-production
|
|
2
|
+
|
|
3
|
+
[PHP]
|
|
4
|
+
engine = On
|
|
5
|
+
short_open_tag = Off
|
|
6
|
+
precision = 14
|
|
7
|
+
output_buffering = 4096
|
|
8
|
+
zlib.output_compression = Off
|
|
9
|
+
implicit_flush = Off
|
|
10
|
+
unserialize_callback_func =
|
|
11
|
+
serialize_precision = -1
|
|
12
|
+
disable_functions =
|
|
13
|
+
disable_classes =
|
|
14
|
+
zend.enable_gc = On
|
|
15
|
+
zend.exception_ignore_args = On
|
|
16
|
+
zend.exception_string_param_max_len = 0
|
|
17
|
+
expose_php = On
|
|
18
|
+
max_execution_time = 30
|
|
19
|
+
max_input_time = 60
|
|
20
|
+
memory_limit = -1
|
|
21
|
+
error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
|
|
22
|
+
display_errors = Off
|
|
23
|
+
display_startup_errors = Off
|
|
24
|
+
log_errors = On
|
|
25
|
+
ignore_repeated_errors = Off
|
|
26
|
+
ignore_repeated_source = Off
|
|
27
|
+
report_memleaks = On
|
|
28
|
+
variables_order = "GPCS"
|
|
29
|
+
request_order = "GP"
|
|
30
|
+
register_argc_argv = Off
|
|
31
|
+
auto_globals_jit = On
|
|
32
|
+
post_max_size = 0
|
|
33
|
+
auto_prepend_file =
|
|
34
|
+
auto_append_file =
|
|
35
|
+
default_mimetype = "text/html"
|
|
36
|
+
default_charset = "UTF-8"
|
|
37
|
+
doc_root =
|
|
38
|
+
user_dir =
|
|
39
|
+
enable_dl = Off
|
|
40
|
+
file_uploads = On
|
|
41
|
+
upload_max_filesize = 0
|
|
42
|
+
max_file_uploads = 20
|
|
43
|
+
allow_url_fopen = On
|
|
44
|
+
allow_url_include = Off
|
|
45
|
+
default_socket_timeout = 60
|
|
46
|
+
SMTP = localhost
|
|
47
|
+
smtp_port = 25
|
|
48
|
+
mail.add_x_header = Off
|
|
49
|
+
mail.mixed_lf_and_crlf = Off
|
|
50
|
+
odbc.allow_persistent = On
|
|
51
|
+
odbc.check_persistent = On
|
|
52
|
+
odbc.max_persistent = -1
|
|
53
|
+
odbc.max_links = -1
|
|
54
|
+
odbc.defaultlrl = 4096
|
|
55
|
+
odbc.defaultbinmode = 1
|
|
56
|
+
mysqli.max_persistent = -1
|
|
57
|
+
mysqli.allow_persistent = On
|
|
58
|
+
mysqli.max_links = -1
|
|
59
|
+
mysqli.default_port = 3306
|
|
60
|
+
mysqli.default_socket =
|
|
61
|
+
mysqli.default_host =
|
|
62
|
+
mysqli.default_user =
|
|
63
|
+
mysqli.default_pw =
|
|
64
|
+
mysqlnd.collect_statistics = On
|
|
65
|
+
mysqlnd.collect_memory_statistics = Off
|
|
66
|
+
pgsql.allow_persistent = On
|
|
67
|
+
pgsql.auto_reset_persistent = Off
|
|
68
|
+
pgsql.max_persistent = -1
|
|
69
|
+
pgsql.max_links = -1
|
|
70
|
+
pgsql.ignore_notice = 0
|
|
71
|
+
pgsql.log_notice = 0
|
|
72
|
+
bcmath.scale = 0
|
|
73
|
+
session.save_handler = files
|
|
74
|
+
session.use_strict_mode = 0
|
|
75
|
+
session.use_cookies = 1
|
|
76
|
+
session.use_only_cookies = 1
|
|
77
|
+
session.name = PHPSESSID
|
|
78
|
+
session.auto_start = 0
|
|
79
|
+
session.cookie_lifetime = 0
|
|
80
|
+
session.cookie_path = /
|
|
81
|
+
session.cookie_domain =
|
|
82
|
+
session.cookie_httponly =
|
|
83
|
+
session.cookie_samesite =
|
|
84
|
+
session.serialize_handler = php
|
|
85
|
+
session.gc_probability = 1
|
|
86
|
+
session.gc_divisor = 1000
|
|
87
|
+
session.gc_maxlifetime = 1440
|
|
88
|
+
session.cache_limiter = nocache
|
|
89
|
+
session.cache_expire = 180
|
|
90
|
+
session.use_trans_sid = 0
|
|
91
|
+
session.sid_length = 26
|
|
92
|
+
session.trans_sid_tags = "a=href,area=href,frame=src,form="
|
|
93
|
+
session.sid_bits_per_character = 5
|
|
94
|
+
zend.assertions = -1
|
|
95
|
+
tidy.clean_output = Off
|
|
96
|
+
soap.wsdl_cache_enabled = 1
|
|
97
|
+
soap.wsdl_cache_dir = "/tmp"
|
|
98
|
+
soap.wsdl_cache_ttl = 86400
|
|
99
|
+
soap.wsdl_cache_limit = 5
|
|
100
|
+
ldap.max_links = -1
|
|
101
|
+
|
|
102
|
+
[Pdo_mysql]
|
|
103
|
+
pdo_mysql.default_socket =
|