KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
dt-app-templates
★ 13
Open GitHub ↗
Dynatrace App Bundle Templates
Download README (.md)
Explore Similar Repositories
Super-2024-Swadge-HW
:
Hardware Design for the Super Magfest 2024 Swadge
LumosWeb
:
LumosWeb is web framework written in python
AZ-EditText
:
Customizable EditText for Android
moniQue
:
QGIS plugin for monoplotting of oblique images.
text2phoneme
:
日本語文を音素列へ変換するスクリプト
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
dt-app-templates
?
Download (.md)
# App Toolkit templates ## Structure Folders directly inside the `templates` directory contain templates for the App Toolkit. The folder names are the identifier of the templates (used by the `--template` parameter when creating a new project). ## Develop the templates To work directly with the source in the templates directory, follow these steps: - create a `app.config.json` file with ```json { "environmentUrl": "YOUR_ENVIRONMENT_URL", "app": { "id": "your.app.id", "name": "Your app name", "description": "Your very minimal app", "version": "0.0.0", "scopes": [ { "name": "storage:logs:read", "comment": "default template" }, { "name": "storage:buckets:read", "comment": "default template" } ] } } ``` - modify `package.json` and replace `"dt-app": "{{version}}"` with the current App Toolkit version. Do not commit this change! - run `npm install` and `npm start` ## Test your changes locally ```bash npx dt-app create --environment-url YOUR_ENVIRONMENT_URL --template-dir=../cli-templates/templates/empty ```