repster 0.1.0__tar.gz
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.
- repster-0.1.0/.gitignore +11 -0
- repster-0.1.0/CHANGELOG.md +20 -0
- repster-0.1.0/LICENSE +202 -0
- repster-0.1.0/NOTICE +17 -0
- repster-0.1.0/PKG-INFO +71 -0
- repster-0.1.0/README.md +39 -0
- repster-0.1.0/docs/explanation/how-repster-works.md +74 -0
- repster-0.1.0/docs/explanation/open-core-model.md +52 -0
- repster-0.1.0/docs/explanation/pricing.md +36 -0
- repster-0.1.0/docs/explanation/why-repster.md +58 -0
- repster-0.1.0/docs/how-tos/manage-api-keys.md +58 -0
- repster-0.1.0/docs/how-tos/manage-secrets.md +74 -0
- repster-0.1.0/docs/how-tos/manage-team.md +58 -0
- repster-0.1.0/docs/how-tos/schedule-a-flow.md +73 -0
- repster-0.1.0/docs/how-tos/use-with-coding-agents.md +47 -0
- repster-0.1.0/docs/how-tos/view-logs.md +45 -0
- repster-0.1.0/docs/index.md +104 -0
- repster-0.1.0/docs/reference/cli.md +59 -0
- repster-0.1.0/docs/reference/cloud-api.md +83 -0
- repster-0.1.0/docs/reference/configuration.md +55 -0
- repster-0.1.0/docs/tutorials/deploy-to-cloud.md +74 -0
- repster-0.1.0/docs/tutorials/quickstart.md +101 -0
- repster-0.1.0/examples/github-api/README.md +41 -0
- repster-0.1.0/examples/minimal-deps/README.md +16 -0
- repster-0.1.0/examples/quickstart/README.md +0 -0
- repster-0.1.0/pyproject.toml +89 -0
- repster-0.1.0/src/repster/.agents/skills/repster/SKILL.md +65 -0
- repster-0.1.0/src/repster/.agents/skills/repster/references/cli.md +1 -0
- repster-0.1.0/src/repster/.agents/skills/repster/references/cloud-api.md +1 -0
- repster-0.1.0/src/repster/.agents/skills/repster/references/configuration.md +1 -0
- repster-0.1.0/src/repster/.agents/skills/repster/references/deploy-to-cloud.md +1 -0
- repster-0.1.0/src/repster/.agents/skills/repster/references/how-repster-works.md +1 -0
- repster-0.1.0/src/repster/.agents/skills/repster/references/index.md +1 -0
- repster-0.1.0/src/repster/.agents/skills/repster/references/manage-api-keys.md +1 -0
- repster-0.1.0/src/repster/.agents/skills/repster/references/manage-secrets.md +1 -0
- repster-0.1.0/src/repster/.agents/skills/repster/references/manage-team.md +1 -0
- repster-0.1.0/src/repster/.agents/skills/repster/references/open-core-model.md +1 -0
- repster-0.1.0/src/repster/.agents/skills/repster/references/pricing.md +1 -0
- repster-0.1.0/src/repster/.agents/skills/repster/references/quickstart.md +1 -0
- repster-0.1.0/src/repster/.agents/skills/repster/references/schedule-a-flow.md +1 -0
- repster-0.1.0/src/repster/.agents/skills/repster/references/use-with-coding-agents.md +1 -0
- repster-0.1.0/src/repster/.agents/skills/repster/references/view-logs.md +1 -0
- repster-0.1.0/src/repster/.agents/skills/repster/references/why-repster.md +1 -0
- repster-0.1.0/src/repster/__init__.py +1 -0
- repster-0.1.0/src/repster/cli.py +400 -0
- repster-0.1.0/src/repster/cloud/__init__.py +0 -0
- repster-0.1.0/src/repster/cloud/cli/__init__.py +4 -0
- repster-0.1.0/src/repster/cloud/cli/_helpers.py +58 -0
- repster-0.1.0/src/repster/cloud/cli/auth.py +44 -0
- repster-0.1.0/src/repster/cloud/cli/deployments.py +49 -0
- repster-0.1.0/src/repster/cloud/cli/interactive.py +144 -0
- repster-0.1.0/src/repster/cloud/cli/keys.py +93 -0
- repster-0.1.0/src/repster/cloud/cli/orgs.py +212 -0
- repster-0.1.0/src/repster/cloud/cli/registration.py +18 -0
- repster-0.1.0/src/repster/cloud/cli/secrets.py +77 -0
- repster-0.1.0/src/repster/cloud/client.py +187 -0
- repster-0.1.0/src/repster/cloud/config.py +105 -0
- repster-0.1.0/src/repster/cloud/integration.py +112 -0
- repster-0.1.0/src/repster/cloud/packaging.py +79 -0
- repster-0.1.0/src/repster/cloud/service_runner.py +75 -0
- repster-0.1.0/src/repster/config.py +87 -0
- repster-0.1.0/src/repster/db.py +28 -0
- repster-0.1.0/src/repster/decorator.py +33 -0
- repster-0.1.0/src/repster/executor.py +153 -0
- repster-0.1.0/src/repster/formatting.py +16 -0
- repster-0.1.0/src/repster/logging.py +12 -0
- repster-0.1.0/src/repster/runner.py +76 -0
- repster-0.1.0/src/repster/scan.py +164 -0
- repster-0.1.0/src/repster/scheduler.py +42 -0
- repster-0.1.0/src/repster/store.py +101 -0
- repster-0.1.0/src/repster/ui/__init__.py +0 -0
- repster-0.1.0/src/repster/ui/app.py +29 -0
- repster-0.1.0/src/repster/ui/data_source.py +170 -0
- repster-0.1.0/src/repster/ui/routes.py +160 -0
- repster-0.1.0/src/repster/ui/static/app.css +317 -0
- repster-0.1.0/src/repster/ui/templates/404.html +9 -0
- repster-0.1.0/src/repster/ui/templates/base.html +28 -0
- repster-0.1.0/src/repster/ui/templates/flow_detail.html +67 -0
- repster-0.1.0/src/repster/ui/templates/flows.html +43 -0
- repster-0.1.0/src/repster/ui/templates/run_detail.html +49 -0
- repster-0.1.0/src/repster/ui/templates/runs.html +43 -0
repster-0.1.0/.gitignore
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to Repster are documented in this file. The format is based
|
|
4
|
+
on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project
|
|
5
|
+
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
+
|
|
7
|
+
## [0.1.0]
|
|
8
|
+
|
|
9
|
+
First public release of the `repster` SDK and CLI on PyPI.
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- `@rp.flow` decorator that turns a dlt pipeline into a scheduled, observable
|
|
14
|
+
flow.
|
|
15
|
+
- `rp` / `repster` CLI: local `dev` UI, plus `list`, `run`, `status`, and `logs`
|
|
16
|
+
for working with flows on your own machine.
|
|
17
|
+
- Cloud commands — `login`, `deploy`, `run --cloud`, `secrets`, `org`, and
|
|
18
|
+
`keys` — for using flows on Repster Cloud.
|
|
19
|
+
- Local development UI at `http://localhost:8080` for discovering flows,
|
|
20
|
+
triggering runs, and streaming logs with no account required.
|
repster-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
https://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright 2026 Repster
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
https://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
repster-0.1.0/NOTICE
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Repster
|
|
2
|
+
Copyright 2026 The Repster Authors
|
|
3
|
+
|
|
4
|
+
This product includes software developed by The Repster Authors
|
|
5
|
+
(https://repster.online).
|
|
6
|
+
|
|
7
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
|
+
you may not use this file except in compliance with the License.
|
|
9
|
+
You may obtain a copy of the License at
|
|
10
|
+
|
|
11
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
|
|
13
|
+
Unless required by applicable law or agreed to in writing, software
|
|
14
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
15
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
16
|
+
See the License for the specific language governing permissions and
|
|
17
|
+
limitations under the License.
|
repster-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: repster
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Developer-first replication platform — SDK and CLI
|
|
5
|
+
Project-URL: Homepage, https://docs.repster.online
|
|
6
|
+
Project-URL: Documentation, https://docs.repster.online
|
|
7
|
+
Project-URL: Repster Cloud, https://repster.online
|
|
8
|
+
Author: The Repster Authors
|
|
9
|
+
License-Expression: Apache-2.0
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Keywords: data-engineering,data-pipeline,dlt,elt,etl,ingestion,orchestration,replication,repster,scheduler
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Environment :: Console
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Topic :: Database
|
|
19
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
20
|
+
Requires-Python: >=3.12
|
|
21
|
+
Requires-Dist: croniter>=6.2.2
|
|
22
|
+
Requires-Dist: dlt>=1.27.2
|
|
23
|
+
Requires-Dist: fastapi>=0.115.0
|
|
24
|
+
Requires-Dist: httpx>=0.28.1
|
|
25
|
+
Requires-Dist: jinja2>=3.1.4
|
|
26
|
+
Requires-Dist: pydantic>=2.13.4
|
|
27
|
+
Requires-Dist: python-dotenv>=1.2.2
|
|
28
|
+
Requires-Dist: questionary>=2.1.1
|
|
29
|
+
Requires-Dist: typer>=0.26.4
|
|
30
|
+
Requires-Dist: uvicorn>=0.34.0
|
|
31
|
+
Description-Content-Type: text/markdown
|
|
32
|
+
|
|
33
|
+
# Repster
|
|
34
|
+
|
|
35
|
+
**Lightweight scheduling and observability for dlt pipelines.**
|
|
36
|
+
|
|
37
|
+
[dlt](https://dlthub.com) loads your data; Repster runs it. Add one decorator to an existing dlt pipeline and get a scheduler, run history, retries, and a web UI. No orchestrator to deploy, no service to babysit. When pipelines need to run without your laptop open, `rp deploy` moves the same code to Repster Cloud (managed scheduling and an isolated serverless worker per run).
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
uv add repster
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Docs
|
|
44
|
+
|
|
45
|
+
User documentation is published to [docs.repster.online](https://docs.repster.online).
|
|
46
|
+
|
|
47
|
+
| Section | Purpose |
|
|
48
|
+
|---------|---------|
|
|
49
|
+
| [Quickstart](https://docs.repster.online/tutorials/quickstart/) | build and run your first flow |
|
|
50
|
+
| [Why Repster?](https://docs.repster.online/explanation/why-repster/) | how it compares to cron, orchestrators, and managed ELT |
|
|
51
|
+
| [CLI reference](https://docs.repster.online/reference/cli/) | all `rp` commands |
|
|
52
|
+
| [Configuration](https://docs.repster.online/reference/configuration/) | profiles, env vars, pyproject.toml |
|
|
53
|
+
| [How-to guides](https://docs.repster.online/how-tos/manage-secrets/) | recipes for specific tasks |
|
|
54
|
+
| [Explanation](https://docs.repster.online/explanation/how-repster-works/) | concepts and background |
|
|
55
|
+
|
|
56
|
+
## Local UI
|
|
57
|
+
|
|
58
|
+
`repster dev` starts a local web UI at `http://localhost:8080`: see all discovered flows, trigger runs, and stream logs. No account needed. Deployments, secrets, and team management live in the Repster Cloud UI ([repster.online](https://repster.online)).
|
|
59
|
+
|
|
60
|
+
## Philosophy
|
|
61
|
+
|
|
62
|
+
Pipelines belong in code, state should be visible and replayable, and pricing should reflect actual compute consumed, nothing more. Pipelines are code and every operation around them is a CLI command, which makes Repster as operable by AI coding agents as by humans. The SDK is open source (Apache-2.0) so developers can trust it: everything the CLI transmits to Repster Cloud is inspectable. The managed layer exists because running reliable distributed infrastructure is genuinely hard, and that's what Repster takes off your plate. The code is yours; we help you run it.
|
|
63
|
+
|
|
64
|
+
## Developing the docs
|
|
65
|
+
|
|
66
|
+
The docs site is built with [MkDocs Material](https://squidfunk.github.io/mkdocs-material/); dependencies are declared in `pyproject.toml`. From the `repster/` directory:
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
uv run --group docs mkdocs serve # live-reload server at http://127.0.0.1:8001
|
|
70
|
+
uv run --group docs mkdocs build # static site in site/ (what GitHub Pages deploys)
|
|
71
|
+
```
|
repster-0.1.0/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# Repster
|
|
2
|
+
|
|
3
|
+
**Lightweight scheduling and observability for dlt pipelines.**
|
|
4
|
+
|
|
5
|
+
[dlt](https://dlthub.com) loads your data; Repster runs it. Add one decorator to an existing dlt pipeline and get a scheduler, run history, retries, and a web UI. No orchestrator to deploy, no service to babysit. When pipelines need to run without your laptop open, `rp deploy` moves the same code to Repster Cloud (managed scheduling and an isolated serverless worker per run).
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
uv add repster
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Docs
|
|
12
|
+
|
|
13
|
+
User documentation is published to [docs.repster.online](https://docs.repster.online).
|
|
14
|
+
|
|
15
|
+
| Section | Purpose |
|
|
16
|
+
|---------|---------|
|
|
17
|
+
| [Quickstart](https://docs.repster.online/tutorials/quickstart/) | build and run your first flow |
|
|
18
|
+
| [Why Repster?](https://docs.repster.online/explanation/why-repster/) | how it compares to cron, orchestrators, and managed ELT |
|
|
19
|
+
| [CLI reference](https://docs.repster.online/reference/cli/) | all `rp` commands |
|
|
20
|
+
| [Configuration](https://docs.repster.online/reference/configuration/) | profiles, env vars, pyproject.toml |
|
|
21
|
+
| [How-to guides](https://docs.repster.online/how-tos/manage-secrets/) | recipes for specific tasks |
|
|
22
|
+
| [Explanation](https://docs.repster.online/explanation/how-repster-works/) | concepts and background |
|
|
23
|
+
|
|
24
|
+
## Local UI
|
|
25
|
+
|
|
26
|
+
`repster dev` starts a local web UI at `http://localhost:8080`: see all discovered flows, trigger runs, and stream logs. No account needed. Deployments, secrets, and team management live in the Repster Cloud UI ([repster.online](https://repster.online)).
|
|
27
|
+
|
|
28
|
+
## Philosophy
|
|
29
|
+
|
|
30
|
+
Pipelines belong in code, state should be visible and replayable, and pricing should reflect actual compute consumed, nothing more. Pipelines are code and every operation around them is a CLI command, which makes Repster as operable by AI coding agents as by humans. The SDK is open source (Apache-2.0) so developers can trust it: everything the CLI transmits to Repster Cloud is inspectable. The managed layer exists because running reliable distributed infrastructure is genuinely hard, and that's what Repster takes off your plate. The code is yours; we help you run it.
|
|
31
|
+
|
|
32
|
+
## Developing the docs
|
|
33
|
+
|
|
34
|
+
The docs site is built with [MkDocs Material](https://squidfunk.github.io/mkdocs-material/); dependencies are declared in `pyproject.toml`. From the `repster/` directory:
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
uv run --group docs mkdocs serve # live-reload server at http://127.0.0.1:8001
|
|
38
|
+
uv run --group docs mkdocs build # static site in site/ (what GitHub Pages deploys)
|
|
39
|
+
```
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Repster's execution model: flow discovery, local vs. cloud runs, immutable deployments, secrets injection, and observability.
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# How Repster works
|
|
6
|
+
|
|
7
|
+
Repster adds scheduling, secrets management, cloud execution, and observability on top of [dlt](https://dlthub.com), without changing how you write pipelines.
|
|
8
|
+
|
|
9
|
+
## The core idea
|
|
10
|
+
|
|
11
|
+
A Repster project is a Python package with flows:
|
|
12
|
+
|
|
13
|
+
```python
|
|
14
|
+
@rp.flow(schedule="0 * * * *")
|
|
15
|
+
def my_pipeline():
|
|
16
|
+
pipeline = dlt.pipeline(destination="duckdb")
|
|
17
|
+
pipeline.run(my_source())
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Repster discovers flows by scanning your project files for `@rp.flow()` decorators. Each flow is a callable that runs a dlt pipeline. The decorator adds a name, an optional schedule, and hooks into the Repster execution model.
|
|
21
|
+
|
|
22
|
+
## Local vs. cloud execution
|
|
23
|
+
|
|
24
|
+
Repster uses the same `@rp.flow()` code for both local and cloud execution; the runner is swapped, not the flow definition.
|
|
25
|
+
|
|
26
|
+
**Local**: `rp run <flow>` or `rp dev` (scheduler). Runs in your local Python environment, writes state to `.repster/` (SQLite).
|
|
27
|
+
|
|
28
|
+
**Cloud**: `rp run --cloud <flow>`. Dispatches to an isolated worker managed by Repster. The worker runs the same `@rp.flow()` code in an environment built from your `uv.lock`.
|
|
29
|
+
|
|
30
|
+
## Deployments
|
|
31
|
+
|
|
32
|
+
`rp deploy` packages your project into a source archive with your `uv.lock` and uploads it to the Repster control plane. Each deployment is:
|
|
33
|
+
|
|
34
|
+
- **Immutable**: the archive is content-addressed by `sha256`. Deploying the same code twice is a no-op.
|
|
35
|
+
- **Complete**: the lockfile is included so workers build a reproducible environment.
|
|
36
|
+
|
|
37
|
+
Cloud runs always execute against a specific deployment. `rp run --cloud` uses the latest.
|
|
38
|
+
|
|
39
|
+
## Secrets
|
|
40
|
+
|
|
41
|
+
Secrets (API keys, database credentials) live in `.env` locally and in the Repster secrets vault in the cloud.
|
|
42
|
+
|
|
43
|
+
`rp secrets push` reads `.env` and stores values encrypted in the vault. At run time, the worker receives the secrets as environment variables, never in logs or run records.
|
|
44
|
+
|
|
45
|
+
Repster uses dlt's env-var naming convention, so the same secrets work locally and in the cloud without any code changes.
|
|
46
|
+
|
|
47
|
+
## Observability
|
|
48
|
+
|
|
49
|
+
Every run produces a log stream captured from dlt's output. Logs include:
|
|
50
|
+
|
|
51
|
+
- dlt pipeline progress (rows loaded, tables updated)
|
|
52
|
+
- Any `print()` / `logging` output from your code
|
|
53
|
+
- Full stack traces on failure
|
|
54
|
+
|
|
55
|
+
Runs are stored in the control plane with status, timing, and row counts. Local runs are stored in `.repster/` and merged with cloud runs in `rp status`.
|
|
56
|
+
|
|
57
|
+
## What belongs in a flow
|
|
58
|
+
|
|
59
|
+
Keep the flow body a thin wrapper: construct a `dlt.pipeline(...)` and call `.run(...)`. Extraction logic (HTTP calls, pagination, parsing) belongs inside your `@dlt.resource`/`@dlt.source` functions, where dlt already expects arbitrary Python. One flow run should map to one observable dlt pipeline run.
|
|
60
|
+
|
|
61
|
+
Repster is not a general-purpose script or task runner. If you need to run arbitrary non-dlt workloads on a schedule, use a dedicated orchestrator (Dagster, Airflow, plain cron) instead of stretching a flow to cover it. See [Why Repster?](why-repster.md) for how the two fit together.
|
|
62
|
+
|
|
63
|
+
## What Repster owns and what you own
|
|
64
|
+
|
|
65
|
+
| Repster owns | You own |
|
|
66
|
+
|--------------|---------|
|
|
67
|
+
| Execution (cloud workers) | Pipeline code |
|
|
68
|
+
| Scheduling (cron dispatch) | Connectors and sources |
|
|
69
|
+
| Secrets injection | Destination schema |
|
|
70
|
+
| Log capture and retention | `.env` secrets |
|
|
71
|
+
| Run state and history | `pyproject.toml` config |
|
|
72
|
+
| Infrastructure | |
|
|
73
|
+
|
|
74
|
+
Your pipeline code runs unchanged. Repster adds the operational layer around it.
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: What's open source in Repster (Apache-2.0 SDK, CLI, scheduler, UI) vs. what's part of Repster Cloud, and why the line sits where it does.
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# Open-core model
|
|
6
|
+
|
|
7
|
+
Repster is open-core: the SDK and CLI are open source (Apache-2.0); the cloud control plane is proprietary.
|
|
8
|
+
|
|
9
|
+
## Open source vs. Cloud
|
|
10
|
+
|
|
11
|
+
| Open source (`repster`) | Repster Cloud |
|
|
12
|
+
|--------------------------|---------------|
|
|
13
|
+
| `@rp.flow()` decorator and flow discovery | Serverless execution (isolated worker per run) |
|
|
14
|
+
| Local runs and scheduler (`rp run`, `rp dev`) | Managed scheduling (crons fire without your machine) |
|
|
15
|
+
| Run history, logs, retry | Encrypted secrets vault |
|
|
16
|
+
| Local web UI | Authentication, orgs, roles, API keys |
|
|
17
|
+
| Deploy client (`rp deploy`, `rp secrets push`) | Deployment registry and hosted run history |
|
|
18
|
+
| | Metered, transparent billing *(upcoming)* |
|
|
19
|
+
|
|
20
|
+
Everything in the left column runs entirely on your machine, forever, for free.
|
|
21
|
+
|
|
22
|
+
## What's open source
|
|
23
|
+
|
|
24
|
+
**`repster`** (Apache-2.0): everything you install:
|
|
25
|
+
|
|
26
|
+
- `@rp.flow()` decorator and flow discovery
|
|
27
|
+
- Local runner and scheduler
|
|
28
|
+
- SQLite run history
|
|
29
|
+
- Archive packaging
|
|
30
|
+
- CLI (`rp` / `repster`), including all cloud commands (`login`, `deploy`, `secrets`)
|
|
31
|
+
- HTTP client for the cloud API
|
|
32
|
+
|
|
33
|
+
You can read, fork, and audit exactly what runs when you execute `rp deploy` or `rp run --cloud`.
|
|
34
|
+
|
|
35
|
+
## What's proprietary
|
|
36
|
+
|
|
37
|
+
**`repster-cloud-service`**: the hosted control plane:
|
|
38
|
+
|
|
39
|
+
- Deployment registry and artifact store
|
|
40
|
+
- Secrets vault
|
|
41
|
+
- Cloud execution and worker infrastructure
|
|
42
|
+
- Run state, logs, and scheduling
|
|
43
|
+
- The Repster Cloud UI
|
|
44
|
+
- Billing
|
|
45
|
+
|
|
46
|
+
The control plane is never distributed; it runs as a hosted service.
|
|
47
|
+
|
|
48
|
+
## Why this split
|
|
49
|
+
|
|
50
|
+
Repster Cloud is the product. The SDK is open because trust sits at the code boundary: your pipeline code runs through the open-source `repster.runner` contract, identical in local and cloud execution. Everything the CLI transmits to Repster Cloud is visible in open-source code.
|
|
51
|
+
|
|
52
|
+
The cloud launcher (the code that gets a run onto a worker) lives in the proprietary control plane because workers run in Repster's infrastructure. There's no code running in customer infrastructure that would need to be inspectable.
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Repster Cloud pricing model: metered, compute-based billing with no seats, no MTU, and no row counts.
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# Pricing
|
|
6
|
+
|
|
7
|
+
Repster Cloud is **free during the design-partner phase**. The pricing it's built around is transparent and compute-based: you'll pay for what you use, nothing more.
|
|
8
|
+
|
|
9
|
+
!!! note "Free during the design-partner phase"
|
|
10
|
+
Repster Cloud isn't billing yet. This page describes the pricing model it's built around; until metered billing launches, the line items below aren't charged. They're the commitment we're building toward, and the model won't change shape underneath you.
|
|
11
|
+
|
|
12
|
+
## What you're billed for
|
|
13
|
+
|
|
14
|
+
| Line item | Unit |
|
|
15
|
+
|-----------|------|
|
|
16
|
+
| CPU time | seconds × rate |
|
|
17
|
+
| Memory | GB-seconds × rate |
|
|
18
|
+
| Storage | GB-months × rate |
|
|
19
|
+
| Log retention | GB-months × rate |
|
|
20
|
+
| Repster margin | % of compute cost |
|
|
21
|
+
|
|
22
|
+
## What you're not billed for
|
|
23
|
+
|
|
24
|
+
- **No seats**: invite your whole team
|
|
25
|
+
- **No MTU**: monthly tracked users or events don't factor in
|
|
26
|
+
- **No row counts**: loading 1M rows costs the same compute as loading 1K rows of the same size
|
|
27
|
+
|
|
28
|
+
## Spend controls
|
|
29
|
+
|
|
30
|
+
You'll be able to set a spending cap to prevent unexpected charges, with live usage visible in the Repster Cloud UI.
|
|
31
|
+
|
|
32
|
+
## Why transparent pricing?
|
|
33
|
+
|
|
34
|
+
Opaque pricing (row-based, MTU-based, connector-count-based) is the primary trust complaint against incumbent ELT tools. Engineers extend trust to systems they can audit. When you can see exactly what you consumed and what it cost, you can predict your bill and optimize your pipelines.
|
|
35
|
+
|
|
36
|
+
Repster shows you the raw numbers: CPU seconds, memory, storage. The margin is a fixed percentage on top of the infrastructure cost, with no hidden multipliers.
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: How Repster compares to cron, Airflow, Dagster, Prefect, Fivetran, and Airbyte for scheduling and running dlt pipelines.
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# Why Repster?
|
|
6
|
+
|
|
7
|
+
Repster is the lightweight way to schedule, run, and observe [dlt](https://dlthub.com) pipelines. dlt itself is a library: it loads data brilliantly, but nothing in it runs your pipeline at 6am, records whether it worked, or retries it when it didn't. That's the gap Repster fills, and this page compares it to the other ways of filling it.
|
|
8
|
+
|
|
9
|
+
## Scheduling dlt pipelines with cron
|
|
10
|
+
|
|
11
|
+
Cron fires your script, and that's all it does. In practice you end up hand-building the rest:
|
|
12
|
+
|
|
13
|
+
- Capturing logs somewhere you can actually find them
|
|
14
|
+
- Recording which runs happened, and whether they succeeded
|
|
15
|
+
- Retrying failures without re-running everything by hand
|
|
16
|
+
- Getting secrets onto the machine safely
|
|
17
|
+
- Answering "did last night's run work?" without SSHing anywhere
|
|
18
|
+
|
|
19
|
+
Repster gives you all of that with one decorator and a `.env` file, plus a web UI to see it. And when a laptop or a lone VPS stops being enough, `rp deploy` moves the same code to Repster Cloud (managed scheduling, a secrets vault, an isolated worker per run), no rewrite required.
|
|
20
|
+
|
|
21
|
+
## Repster vs. Airflow, Dagster, and Prefect
|
|
22
|
+
|
|
23
|
+
Orchestrators are the right tool when you have DAGs of heterogeneous tasks: ML jobs, dbt runs, custom scripts with dependencies between them. But if what you're orchestrating is dlt pipelines, an orchestrator is a lot of machinery (a scheduler service, workers, a metadata database, and upgrades to manage) before your first pipeline runs.
|
|
24
|
+
|
|
25
|
+
There are two ways to use Repster here:
|
|
26
|
+
|
|
27
|
+
**Replace the orchestrator you were about to deploy.** If your only workloads are dlt pipelines, `@rp.flow(schedule=...)` covers scheduling, retries, logs, and history, whether on your own machine with `rp dev` or with no infrastructure at all on Repster Cloud.
|
|
28
|
+
|
|
29
|
+
**Keep your orchestrator, but separate it from your compute.** Orchestrators are best at coordination, not at being an execution environment for resource-hungry EL work. Dagster's own guidance makes the case: ["We need to separate infra from business-heavy ETL in the data pipeline"](https://dagster.io/blog/the-dagster-almanack-operationalizing-data-orchestration). The orchestrator keeps the DAG logic and triggers flows via the CLI or API, while Repster Cloud owns the execution layer: an isolated serverless worker per run, secrets injection, log capture. Your orchestrator gets lighter, and your pipelines stop competing with it for resources.
|
|
30
|
+
|
|
31
|
+
Repster is deliberately not a general-purpose task runner. If you need to run arbitrary non-dlt workloads on a schedule, use an orchestrator for those. See [How Repster works](how-repster-works.md) for where the boundary sits.
|
|
32
|
+
|
|
33
|
+
## Repster vs. Fivetran and Airbyte
|
|
34
|
+
|
|
35
|
+
Managed ELT platforms trade control for convenience. Repster keeps the convenience and gives the control back:
|
|
36
|
+
|
|
37
|
+
- **The code is yours.** Pipelines are plain dlt in your repo: reviewed in PRs, versioned in git, portable to anywhere Python runs. No connector configs locked in a vendor GUI.
|
|
38
|
+
- **A real local development workflow.** The same engine runs your flow locally and in the cloud, so you test the actual pipeline before deploying, instead of configuring a connector in a web console and finding out in production. (This is the parity story tools like Dagster sell, applied to data loading.)
|
|
39
|
+
- **Pricing tied to compute, not volume.** Fivetran and Airbyte pricing scales with rows or MTU, so your bill grows with your data even when the work doesn't. Repster is free during the design-partner phase; the metered billing it's building toward charges for raw compute — CPU seconds, memory, storage — not rows. See [Pricing](pricing.md).
|
|
40
|
+
|
|
41
|
+
## Repster vs. dltHub's hosted platform
|
|
42
|
+
|
|
43
|
+
dltHub (the team behind dlt) offers its own hosted platform, and it's a good fit if you want a deeply integrated, batteries-included dlt experience from one vendor. Repster is the lightweight alternative: a thin operational layer over dlt that you can run entirely locally, adopt one decorator at a time, and leave whenever you like. Your flows are plain dlt underneath, so nothing locks you in. We compete on simplicity, transparent compute pricing, and code ownership.
|
|
44
|
+
|
|
45
|
+
## Built for AI coding agents
|
|
46
|
+
|
|
47
|
+
Most data platforms assume a human clicking through a web console, which makes them opaque to AI agents. Repster's entire surface is code and CLI: pipelines and schedules are Python in your repo, and every operation around them (run, deploy, secrets, logs, teams, keys) is an `rp` command. That's a guarantee, not an accident: no operation ships in the UI without a CLI equivalent, so anything you can do, your agent can do. The package even ships an agent skill, and these docs publish as [llms.txt](https://docs.repster.online/llms.txt). See [Use Repster with AI coding agents](../how-tos/use-with-coding-agents.md).
|
|
48
|
+
|
|
49
|
+
## When not to use Repster
|
|
50
|
+
|
|
51
|
+
Repster stays small on purpose. Reach for something else when you need:
|
|
52
|
+
|
|
53
|
+
- **Non-dlt workloads on a schedule**: use an orchestrator (Dagster, Airflow, Prefect) or plain cron
|
|
54
|
+
- **Transformations**: Repster loads data; model it downstream with dbt or SQLMesh
|
|
55
|
+
- **A data catalog, lineage, or alerting suite**: pair Repster with dedicated tools
|
|
56
|
+
- **Streaming**: Repster runs batch dlt pipelines
|
|
57
|
+
|
|
58
|
+
If your problem is "I have dlt pipelines and I want them to run reliably, on a schedule, with logs and retries, without standing up an orchestrator", Repster is built for exactly that. Start with the [Quickstart](../tutorials/quickstart.md).
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Create, list, and revoke Repster Cloud API keys (rpk_) for CI and programmatic access.
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# Manage API keys
|
|
6
|
+
|
|
7
|
+
API keys (`rpk_...`) authenticate CLI and programmatic access to Repster Cloud. Keys are org-scoped and can be created, listed, and revoked.
|
|
8
|
+
|
|
9
|
+
## List keys
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
rp keys list
|
|
13
|
+
rp keys list --profile prod
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
Shows key prefix, name, status, last-used date, and creation date. Key values are never shown after creation.
|
|
17
|
+
|
|
18
|
+
## Create a key
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
rp keys create
|
|
22
|
+
rp keys create --name "ci-deploy-key"
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
The raw key is printed once; copy it immediately. It cannot be retrieved again.
|
|
26
|
+
|
|
27
|
+
## Revoke a key
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
rp keys revoke <key-id-or-prefix>
|
|
31
|
+
rp keys revoke rpk_abc123 --yes # skip confirmation prompt
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Revoked keys are rejected immediately by Repster Cloud.
|
|
35
|
+
|
|
36
|
+
## Using keys in CI
|
|
37
|
+
|
|
38
|
+
Set the key as an environment variable; repster picks it up automatically:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
REPSTER_API_TOKEN=rpk_... rp deploy
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Or configure it in a named profile:
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
rp login --token rpk_... --profile ci
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
Then use `--profile ci` in commands that need it.
|
|
51
|
+
|
|
52
|
+
## Key roles
|
|
53
|
+
|
|
54
|
+
Keys inherit the role of the user who created them (see the role table in [Manage your team](manage-team.md)). Create dedicated CI keys with the minimum role needed.
|
|
55
|
+
|
|
56
|
+
## Web UI
|
|
57
|
+
|
|
58
|
+
Keys can also be created and revoked in the Repster Cloud UI ([repster.online](https://repster.online)) under **Settings → API Keys**.
|