mf-hosting-frontend 1.0.0

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.
Files changed (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +52 -0
package/README.md ADDED
@@ -0,0 +1,6 @@
1
+
2
+ # mf-hosting
3
+
4
+ Hosting definitions
5
+
6
+ Information used to create packages
package/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "mf-hosting-frontend",
3
+ "version": "1.0.0",
4
+ "description": "hosting definitions for frontend @MF",
5
+ "devDependencies": {
6
+ "semantic-release": "^19.0.5"
7
+ },
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/arlac77/mf-hosting-frontend.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/arlac77/mf-hosting-frontend/issues"
14
+ },
15
+ "homepage": "https://github.com/arlac77/mf-hosting-frontend#readme",
16
+ "pkgbuild": {
17
+ "output": {
18
+ "arch": {},
19
+ "debian": {}
20
+ },
21
+ "groups": "services",
22
+ "csp.endpoint": "/services/csp/upload",
23
+ "csp.header": "default-src 'self' data:; report-uri {{csp.endpoint}}",
24
+ "depends": {
25
+ "nginx-mainline": ">=1.23.2"
26
+ },
27
+ "html.base.href": "<base href=\"{{http.path}}/\"/>",
28
+ "http.api": "${http.origin}${http.api.path}",
29
+ "http.api.path": "${http.path}/api",
30
+ "http.base.path": "/${groups}",
31
+ "http.origin": "https://mfelten.dynv6.net",
32
+ "http.path": "${http.base.path}/${name}",
33
+ "install.base.dir": "/${groups}/",
34
+ "install.dir": "${install.base.dir}${name}${install.sub.dir}",
35
+ "install.sub.dir": "/",
36
+ "journal.endpoint": "/services/journal",
37
+ "nginx.sites.dir": "/etc/nginx/sites/common/",
38
+ "os.group": "${name}",
39
+ "os.user": "${name}",
40
+ "public.base.url": "https://mfelten.dynv6.net/",
41
+ "variant": "mf.linux.frontend",
42
+ "well-known.content.dir": "/srv/http/.well-known/",
43
+ "wss.api": "${wss.origin}${http.api.path}",
44
+ "wss.origin": "${http.origin}"
45
+ },
46
+ "template": {
47
+ "inheritFrom": [
48
+ "arlac77/template-npm",
49
+ "arlac77/template-semantic-release"
50
+ ]
51
+ }
52
+ }