power_stencil 0.3.5 → 0.3.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +29 -22
- data/doc/builds.md +1 -1
- data/doc/entities.md +2 -2
- data/doc/faq.md +106 -0
- data/doc/templates.md +1 -1
- data/etc/templates/project/.ps_project/personal-config.yaml +3 -3
- data/lib/power_stencil/project/config.rb +5 -3
- data/lib/power_stencil/version.rb +1 -1
- data/power_stencil.gemspec +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b07abdd0e20d4fbcb3fa6101b2f51b6979dd0004
|
4
|
+
data.tar.gz: 568e506add9ea1c13cd6edb4a8b6d146d60ac593
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: feea8307da3b4cd3c0851f9004aeefba5f20d4130f2da0a9cb1b8fa3c06e988bb936b6e513c15aa6928f7a23f44ff563aab1aa7a08b37d8ff47a9e4ef066abad
|
7
|
+
data.tar.gz: 87c4358e744a2aa22b96c475461ce996c4a82a2d73fb3b90b4560d12d62a6b5068611d9a4318b6c67891a7f5a322bda59dd5343af32753fdbd7b52f0b5b57a9b
|
data/README.md
CHANGED
@@ -5,7 +5,7 @@ PowerStencil
|
|
5
5
|
|
6
6
|
<!-- TOC -->
|
7
7
|
|
8
|
-
- [
|
8
|
+
- [Overview](#overview)
|
9
9
|
- [Pfff, yet another templating engine...](#pfff-yet-another-templating-engine)
|
10
10
|
- [Installation](#installation)
|
11
11
|
- [Usage](#usage)
|
@@ -19,30 +19,28 @@ PowerStencil
|
|
19
19
|
|
20
20
|
<!-- /TOC -->
|
21
21
|
|
22
|
-
#
|
22
|
+
# Overview
|
23
23
|
|
24
24
|
`PowerStencil` proposes a radical approach on how to manage your shared configuration.
|
25
25
|
|
26
|
-
|
26
|
+
Configuration is one of the most complex things to maintain, and anyone who participated in a large scale piece of software or documentation knows how complex it is to maintain, keep consistent and avoid duplication on the long run across the various projects that may share this configuration.
|
27
27
|
|
28
|
-
|
28
|
+
From a very high level point of view, the workfow `PowerStencil` proposes looks like:
|
29
29
|
|
30
|
-
|
30
|
+
![simple-flow-image]
|
31
31
|
|
32
32
|
`PowerStencil` provides **development and operations friendly workflows to fully manage the maintenance of a complex shared config** in order to generate anything you may want like _documentation_, _static sites_, _code_, _configuration_ for multiple tools..., while **avoiding duplication, and manage it like code** !
|
33
33
|
|
34
|
-
It is a common pattern to introduce a database to manage
|
34
|
+
It is a common pattern to introduce a database to manage shared configuration for CI/CD processes, and it is a very bad idea (see [F.A.Q.]) because it implies extra tooling, and specific developments that de-facto become single point of failure at the heart of your development process. Why would you do that when something as versatile and ubiquitous as Git exists that will integrate smoothly within your existing development and operations workflows, builds, CI/CD processes, while benefiting from all the goodness provided by Git, like branches, decentralization, versioning, tags, code reviews, traceability, simplified fallbacks etc... ?
|
35
35
|
|
36
|
-
**
|
37
|
-
|
38
|
-
See some real world [example use cases].
|
36
|
+
A `PowerStencil` project is composed of a data repository and a pretty standard templating flow to generate whatever is needed by your project or organization and **with `PowerStencil` everything is maintained in a git repository**: data, templates, specific code **without sacrificing on data integrity and relational features**. No more config loss, no more change applied without a full lineage.
|
39
37
|
|
40
38
|
The `PowerStencil` gem provides the `power_stencil` executable which is a pluggable CLI to:
|
41
39
|
|
42
|
-
-
|
43
|
-
- Manage
|
44
|
-
- Manage
|
45
|
-
- Create and manipulate
|
40
|
+
- Manage the project data
|
41
|
+
- Manage templates
|
42
|
+
- Manage builds
|
43
|
+
- Create and manipulate plugins
|
46
44
|
|
47
45
|
# Pfff, yet another templating engine...
|
48
46
|
|
@@ -110,17 +108,19 @@ The program uses the standard paradigm of sub-commands (à-la-git), and each can
|
|
110
108
|
|
111
109
|
To create a new project, use the `init` sub-command. It works as you would expect. If you run it in an existing directory it will create the project here but you can specify the directory where you want the project to be created (the path will be created provided you have the rights on the filesystem):
|
112
110
|
|
113
|
-
$ power_stencil init
|
111
|
+
$ power_stencil init /where/you/want/your/project
|
114
112
|
|
115
|
-
|
113
|
+
Once the project created, if you are anywhere within the project tree, you don't need to specify the project path anymore (if needed, any `power_stencil` sub-command supports a `--project-path` option). If you're used to the Git command line, it works the same way, and you should not feel in uncharted territory...
|
116
114
|
|
117
115
|
:information_source: The rest of this documentation will assume you are at the root of this created project.
|
118
116
|
|
119
|
-
|
117
|
+
**:information_source: Of course, once you've been creating a new project, you should version it with Git:**
|
120
118
|
|
121
119
|
$ git init
|
120
|
+
$ git add .
|
122
121
|
$ git commit -a -m 'Initial commit'
|
123
122
|
|
123
|
+
This will allow you to track any change resulting of your interactions with `power_stencil` command line.
|
124
124
|
|
125
125
|
## `PowerStencil` project structure
|
126
126
|
|
@@ -141,9 +141,9 @@ The structure of a brand new `PowerStencil` project is the following:
|
|
141
141
|
│ └── README.md
|
142
142
|
└── versioned-config.yaml
|
143
143
|
```
|
144
|
-
New directories will appear once you start some [builds] or when you will define [templates].
|
144
|
+
New directories will appear once you start some [builds] or when you will define [templates], but this is the initial state.
|
145
145
|
|
146
|
-
Not all the files in this directory should be versioned, and this the reason why there is a preconfigured `.gitignore` at the root of the project.
|
146
|
+
Not all the files in this directory should be versioned, and this the reason why there is a preconfigured `.gitignore` at the root of the project. It is prefilled so that unless you want to specifically avoid a file to be versioned, you don't need any action regarding `PowerStencil` project files.
|
147
147
|
|
148
148
|
The project has two distinct config files. Keep the official project config in the `.ps_project/versioned-config.yaml` which, as its name suggest will be versioned. But any developer who wants to temporarily override some configuration should do it in the `.ps_project/personal-config.yaml` which is not be versioned. The content defined in the latter overrides the content of the official one. This is a clean way for anyone who wants to test something to safely do it locally without the risk to pollute the central repo.
|
149
149
|
|
@@ -155,19 +155,25 @@ The `plugins` directory can optionally contain project specific plugins. Plugins
|
|
155
155
|
|
156
156
|
The core of the system is the `entity`, so you should start by having a look at what entities are, how they are easily managed using the `PowerStencil` CLI and shell.
|
157
157
|
|
158
|
-
:arrow_forward: [Entities]
|
158
|
+
> :arrow_forward: [Entities]
|
159
159
|
|
160
160
|
Then it is important to understand how to use entities within `templates`. Templates are the way to generate something (doc, code, descriptors, sites, whatever...) from the data that the entities represent.
|
161
161
|
|
162
|
-
:arrow_forward: [Templates]
|
162
|
+
> :arrow_forward: [Templates]
|
163
163
|
|
164
164
|
The mechanism that combines entities and templates is called a `build`. A build is always attached to an entity (you build something). The result of a build is a set of files. Optionally an action can be triggered after the files are generated (could be as simple as calling a script that has been generated).
|
165
165
|
|
166
|
-
:arrow_forward: [Builds]
|
166
|
+
> :arrow_forward: [Builds]
|
167
167
|
|
168
168
|
`PowerStencil` could stop there, and you would be able to do whatever you want, but there is a whole world beyond. `Plugins` provide a way to completely extend `PowerStencil`, further control relations between entities, implement complex post-build actions, add CLI sub-commands and options. Plugins can be local to the project or coming in the form of standard Ruby Gems ! The icing on the cake...
|
169
169
|
|
170
|
-
:arrow_forward: [Plugins]
|
170
|
+
> :arrow_forward: [Plugins]
|
171
|
+
|
172
|
+
And course, you may:
|
173
|
+
|
174
|
+
- Read the [F.A.Q.]
|
175
|
+
- See some real world [example use cases].
|
176
|
+
|
171
177
|
|
172
178
|
# Contributing
|
173
179
|
|
@@ -189,6 +195,7 @@ Everyone interacting in the PowerStencil project’s codebases, issue trackers,
|
|
189
195
|
[builds]: doc/builds.md "Builds in PowerStencil"
|
190
196
|
[plugins]: doc/plugins.md "Plugins in PowerStencil"
|
191
197
|
[example use cases]: doc/example_use_cases.md "Example uses cases using PowerStencil"
|
198
|
+
[F.A.Q.]: doc/faq.md "PowerStencil F.A.Q."
|
192
199
|
[code of conduct]: CODE_OF_CONDUCT.md
|
193
200
|
|
194
201
|
<!-- Code links -->
|
data/doc/builds.md
CHANGED
@@ -255,7 +255,7 @@ If you want to do something more custom after the build process completed, this
|
|
255
255
|
[entities]: entities.md "Entities in PowerStencil"
|
256
256
|
[templates]: templates.md "Templates in PowerStencil"
|
257
257
|
[plugins]: plugins.md "Plugins in PowerStencil"
|
258
|
-
[buildable]: entities.md#buildable
|
258
|
+
[buildable]: entities.md#buildable-and-buildable_by "How to make an entity buildable ?"
|
259
259
|
[local entities]: entities.md#local-unversioned-entities "Local unversioned entities"
|
260
260
|
|
261
261
|
<!-- Code links -->
|
data/doc/entities.md
CHANGED
@@ -33,7 +33,7 @@ Entities
|
|
33
33
|
- [not_empty](#not_empty)
|
34
34
|
- [should_match](#should_match)
|
35
35
|
- [class_name](#class_name)
|
36
|
-
- [buildable
|
36
|
+
- [buildable and buildable_by](#buildable-and-buildable_by)
|
37
37
|
- [Module you could include in your entity types](#module-you-could-include-in-your-entity-types)
|
38
38
|
- [Adding functional code](#adding-functional-code)
|
39
39
|
|
@@ -908,7 +908,7 @@ PowerStencil DSL> e.valid? raise_error: true
|
|
908
908
|
|
909
909
|
:warning: Use this one with caution, as it does not test anything regarding inheritance...
|
910
910
|
|
911
|
-
### buildable
|
911
|
+
### buildable and buildable_by
|
912
912
|
|
913
913
|
One of the most important directives !
|
914
914
|
More information is provided in the [builds] documentation, but basically this defines an `entity_type` as a potential target for the build process.
|
data/doc/faq.md
ADDED
@@ -0,0 +1,106 @@
|
|
1
|
+
F.A.Q.
|
2
|
+
======
|
3
|
+
|
4
|
+
<!-- TOC -->
|
5
|
+
|
6
|
+
- [How does `PowerStencil` compare with a CMDB ?](#how-does-powerstencil-compare-with-a-cmdb-)
|
7
|
+
- [Why is a "real" database a bad idea as configuration store for CI/CD ?](#why-is-a-real-database-a-bad-idea-as-configuration-store-for-cicd-)
|
8
|
+
- [How does `PowerStencil` compare to environment variables + subst ?](#how-does-powerstencil-compare-to-environment-variables--subst-)
|
9
|
+
- [Why data persisted in YAML ?](#why-data-persisted-in-yaml-)
|
10
|
+
- [What are the system requirements ?](#what-are-the-system-requirements-)
|
11
|
+
- [What is the status of `PowerStencil` ?](#what-is-the-status-of-powerstencil-)
|
12
|
+
|
13
|
+
<!-- /TOC -->
|
14
|
+
[:back:][Documentation root]
|
15
|
+
|
16
|
+
# How does `PowerStencil` compare with a CMDB ?
|
17
|
+
|
18
|
+
It could sound like a strange question. `PowerStencil` is absolutelly not designed with ITIL in mind but in the end its true that its data management part looks a lot like a [CMDB].
|
19
|
+
|
20
|
+
- [Entities][entities] (and more specifically entity types) can cover most aspects (I am not ITIL expert enough to say it covers all of them) of ITIL's _Configuration Items_. Default entities provided with `PowerStencil` do not contain all necessary attributes to do be really considered as _configuration items_, but it should be very easy to achieve with custom entities. In fact it could be a good idea of [plugin][plugins]...
|
21
|
+
- Relation semantics in `PowerStencil` cover 1-1, 1-n and composition relation patterns.
|
22
|
+
- Versioning is achieved through Git. Implying on top of versioning, branching, merging
|
23
|
+
|
24
|
+
But `PowerStencil` cannot be simplified to it's "database" aspect. It goes well beyond, and is as well a pragmatic workflow for developers and operations to actually do something out of this data. A [CMDB] may be used by external processes in order to achieve what `PowerStencil` does out of the box.
|
25
|
+
|
26
|
+
|
27
|
+
# Why is a "real" database a bad idea as configuration store for CI/CD ?
|
28
|
+
|
29
|
+
There are some reasons why using a database in the scope of CI/CD is not a good idea.
|
30
|
+
|
31
|
+
Basically the CI/CD infrastructure could be built around Jenkins, containerized tools (Drone for example), Travis, GitlabCI... The goal being to provide the **easiest possible way for the developer** to perform integration tests and eventually build and deploy software.
|
32
|
+
|
33
|
+
But the easiest possible way for the developer doesn't mean that the underlying infrastructure is simple to put in place or maintain. In fact it is not !
|
34
|
+
|
35
|
+
Anything you add to this carefully crafted mechanic could turn into an infrastructure management nightmare. And a database (and its availability, maintenance) is clearly not the simplest component to inject in your infrastructure...
|
36
|
+
|
37
|
+
On top of this, a database does not not provide by default all the required features. Versioning is obviously one of them but of course not the only one (you may think about branching or others...). Meaning that **you need to have custom developments** on top of the chosen database in order to achieve all the required features. It immediately becomes a de-facto single point of failure in your CI/CD process...
|
38
|
+
|
39
|
+
Relying on Git to achieve the storage, versioning, branching, decentralization is a much easier way to achieve the same. There is no need to have specific developments as any CI/CD mechanism knows how to deal with extra git repository.
|
40
|
+
|
41
|
+
# How does `PowerStencil` compare to environment variables + subst ?
|
42
|
+
|
43
|
+
If you have very few files/templates, you may consider this as a solution, but as soon as your templates will complexify or some data need to reference some other, you will enter a loop of death that will make you regret your initial choice.
|
44
|
+
|
45
|
+
`PowerStencil` is not a templating engine, it is a framework!
|
46
|
+
|
47
|
+
Not only it [allows structured and relational data][entities], it structures your work as well, and provides mechanisms to allow developers to [easily perform tests without committing unwanted changes by mistake][overrides].
|
48
|
+
|
49
|
+
Due on how it is easy to use `PowerStencil`, even for the simplest use cases, there is no real reason not to use it.
|
50
|
+
|
51
|
+
|
52
|
+
# Why data persisted in YAML ?
|
53
|
+
|
54
|
+
Assuming Git is used for storage and versioning **we need to have a data format that is git-friendly**.
|
55
|
+
|
56
|
+
- So it discards local databases like SQLite, BerkeleyDB or others which are binary formats.
|
57
|
+
- XML is **not** a human readable format and is a real pain to _diff_. It should have been kept for what it has been designed for, ie machine to machine protocols...
|
58
|
+
|
59
|
+
So the two main remaining contenders are JSON and YAML. Although there is no real reason to take one more than the other, including the manipulating language, would I have written `PowerStencil` in JS or Go, I may probably have chosen JSON as storage format. But it is written in Ruby and therefore I went for YAML.
|
60
|
+
|
61
|
+
|
62
|
+
# What are the system requirements ?
|
63
|
+
|
64
|
+
`PowerStencil` has been developed under Linux, but it's only requiring a working Ruby installed on your machine.
|
65
|
+
|
66
|
+
As such, even if I never tested, I would expect it to probably work out of the box on MacOS, BSD or other Unices supporting Ruby 2.2+.
|
67
|
+
|
68
|
+
Regarding Windows, I stopped using spywareOS years ago so I can't really tell you. Last time I tried using Ruby on Windows (maybe 10 years ago), I did face a lot of dependency issues. Maybe things are better now, but I have no idea. As far as I understood you can now have an Ubuntu running on top of Windows 10 as a kind of blessed VM. I would probably more go this way...
|
69
|
+
|
70
|
+
|
71
|
+
# What is the status of `PowerStencil` ?
|
72
|
+
|
73
|
+
Although `PowerStencil` is still under development, **it can already be safely used**.
|
74
|
+
|
75
|
+
Regarding `PowerStencil` core:
|
76
|
+
|
77
|
+
- The part that may evolve the most is the plugin part (including documentation which is not really in par with the rest...), but it should not break anything developed now.
|
78
|
+
- New system entity types may appear.
|
79
|
+
|
80
|
+
Anyway `PowerStencil` follows the semantic versioning pattern and if incompatible changes arise it may be reflected in the version.
|
81
|
+
|
82
|
+
There are already some plugins in the pipe, especially around contenerization topics.
|
83
|
+
|
84
|
+
:information_source: Of course, `PowerStencil` is new software and it is expected to evolve with the needs of its users...
|
85
|
+
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
[:back:][Documentation root]
|
90
|
+
<!-- End of Document -->
|
91
|
+
|
92
|
+
<!-- Pages -->
|
93
|
+
[Documentation root]: ../README.md "Back to documentation root"
|
94
|
+
[entities]: entities.md "Entities in PowerStencil"
|
95
|
+
[plugins]: plugins.md "Plugins in PowerStencil"
|
96
|
+
[overrides]: builds.md#overriding-entities-and-build-scenarii "Overriding data locally"
|
97
|
+
|
98
|
+
|
99
|
+
<!-- Code links -->
|
100
|
+
|
101
|
+
|
102
|
+
<!-- Illustrations -->
|
103
|
+
|
104
|
+
|
105
|
+
<!-- External links -->
|
106
|
+
[CMDB]: https://en.wikipedia.org/wiki/Configuration_management_database "Configuration Management Database"
|
data/doc/templates.md
CHANGED
@@ -317,7 +317,7 @@ Flawless victory !!
|
|
317
317
|
[builds]: builds.md "Builds in PowerStencil"
|
318
318
|
[plugins]: plugins.md "Plugins in PowerStencil"
|
319
319
|
[example use cases]: example_use_cases.md "Example uses cases using PowerStencil"
|
320
|
-
[buildable]: entities.md#buildable
|
320
|
+
[buildable]: entities.md#buildable-and-buildable_by "How to make an entity buildable ?"
|
321
321
|
|
322
322
|
<!-- Code links -->
|
323
323
|
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# THIS FILE *IS NOT* MEANT TO BE VERSIONED (and is not by default)
|
3
3
|
# You can use it for any configuration you want to keep local
|
4
4
|
|
5
|
-
# debug
|
6
|
-
:debug: false
|
5
|
+
# :debug: true
|
7
6
|
# :log-level: 2
|
8
|
-
# :debug-on-stderr: true
|
7
|
+
# :debug-on-stderr: true
|
8
|
+
# :verbose: true
|
@@ -5,9 +5,9 @@ module PowerStencil
|
|
5
5
|
|
6
6
|
include PowerStencil::Project::Paths
|
7
7
|
|
8
|
-
PROJECT_CONFIG_PRIORITY =
|
9
|
-
USER_CONFIG_PRIORITY =
|
10
|
-
PLUGIN_CONFIG_PRIORITY_MIN =
|
8
|
+
PROJECT_CONFIG_PRIORITY = 990
|
9
|
+
USER_CONFIG_PRIORITY = 995
|
10
|
+
PLUGIN_CONFIG_PRIORITY_MIN = 100
|
11
11
|
|
12
12
|
attr_reader :plugin_priority_count
|
13
13
|
|
@@ -16,6 +16,8 @@ module PowerStencil
|
|
16
16
|
# Optional config files should have less priority than the command line layer
|
17
17
|
add_optional_config_layer project_versioned_config_file, 'versioned project config file', PROJECT_CONFIG_PRIORITY
|
18
18
|
add_optional_config_layer project_personal_config_file, 'personal project config file', USER_CONFIG_PRIORITY
|
19
|
+
Climatic.send :setup_logger
|
20
|
+
logger.debug 'Project config files loaded'
|
19
21
|
end
|
20
22
|
|
21
23
|
|
data/power_stencil.gemspec
CHANGED
@@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
|
|
25
25
|
spec.add_development_dependency 'rake', '~> 10.0'
|
26
26
|
spec.add_development_dependency 'rspec', '~> 3.0'
|
27
27
|
|
28
|
-
spec.add_dependency 'climatic', '~> 0.2', '>= 0.2.
|
28
|
+
spec.add_dependency 'climatic', '~> 0.2', '>= 0.2.28'
|
29
29
|
spec.add_dependency 'dir_glob_ignore', '~> 0.3'
|
30
30
|
spec.add_dependency 'universe_compiler', '~> 0.2', '>= 0.2.11'
|
31
31
|
spec.add_dependency 'pry'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: power_stencil
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Laurent B.
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-09-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -61,7 +61,7 @@ dependencies:
|
|
61
61
|
version: '0.2'
|
62
62
|
- - ">="
|
63
63
|
- !ruby/object:Gem::Version
|
64
|
-
version: 0.2.
|
64
|
+
version: 0.2.28
|
65
65
|
type: :runtime
|
66
66
|
prerelease: false
|
67
67
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -71,7 +71,7 @@ dependencies:
|
|
71
71
|
version: '0.2'
|
72
72
|
- - ">="
|
73
73
|
- !ruby/object:Gem::Version
|
74
|
-
version: 0.2.
|
74
|
+
version: 0.2.28
|
75
75
|
- !ruby/object:Gem::Dependency
|
76
76
|
name: dir_glob_ignore
|
77
77
|
requirement: !ruby/object:Gem::Requirement
|
@@ -143,6 +143,7 @@ files:
|
|
143
143
|
- doc/builds.md
|
144
144
|
- doc/entities.md
|
145
145
|
- doc/example_use_cases.md
|
146
|
+
- doc/faq.md
|
146
147
|
- doc/images/power-stencil-entity-build.svg
|
147
148
|
- doc/images/power-stencil-entity-creation.svg
|
148
149
|
- doc/images/power-stencil-simple-flow.svg
|
@@ -263,7 +264,7 @@ homepage: https://gitlab.com/tools4devops/power_stencil
|
|
263
264
|
licenses:
|
264
265
|
- MIT
|
265
266
|
metadata: {}
|
266
|
-
post_install_message: "\nThank you for installing PowerStencil 0.3.
|
267
|
+
post_install_message: "\nThank you for installing PowerStencil 0.3.6 !\nFrom the command
|
267
268
|
line you can run `power_stencil --help`\nIf your shell is not completing the command:\n
|
268
269
|
\ If you use rbenv: `rbenv rehash`\n If you use zsh : `rehash`\n\nFull documentation
|
269
270
|
here : https://gitlab.com/tools4devops/power_stencil/blob/master/README.md\nFeel
|