-
Notifications
You must be signed in to change notification settings - Fork 1
/
properties.txt
68 lines (54 loc) · 2.02 KB
/
properties.txt
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
# properties.txt
#
# Part of https://github.com/Pittsburgh-NEH-Institute/initializer
#
# Instructions: Edit the property values (inside single quotes to the
# right of the equal sign) to specify values appropriate for your
# project. Then run the Initializer.
# ---
# initializer configuration settings
# ---
# create_directory_structure : If "true", creates directories for
# modules, views, data, tests with placeholder .gitkeep files.
# Otherwise does nothing.
create_directory_structure="true"
# ---
# app data
# ---
# name : Short name, no spaces or special characters
# This will be the collection name where the app is installed.
name='init-test'
# description : Description shown in package manager
# This can be a longer version of the name.
description='useful description'
# project_URI : Serves as the base URI for the project namespace
# Use a unique URI that is associated with you.
project_URI='http://www.obdurodon.org'
# version : Use semantic versioning
# Initial projects will use 0.0.1.
# To update semantic version in app later, either:
# Change the value here and rerun the initializer, or
# Update the version in expath-pkg.xml
version='0.0.1'
# release_status : Release status is appended to version number
# Suggested values are 'alpha', 'beta', or 'stable'
# To update release status in app later, either:
# Change the value here and rerun the initializer, or
# Update the status in repo.xml
release_status='alpha'
# exist_version : eXist-db version used for app development
# To update eXist-db version in app later, either:
# Change the value here and rerun the initializer, or
# Update @semver-min on <dependency> in expath-pkg.xml
exist_version='6.0.1'
# license : Software license you choose to use
# Create a corresponding LICENSE file in GitHub when you
# initialize remotely, then git pull.
license='GNU-GPL'
# ---
# developer data
# ---
# author : app developer name in human language
author='Gabi Keane'
# author_URI : author’s website or empty string
author_URI='http://www.obdurodon.org/gab'