Skip to content

Commit

Permalink
add tutorial files
Browse files Browse the repository at this point in the history
  • Loading branch information
hkollmann committed Apr 28, 2020
1 parent 675a815 commit 0f6fb39
Show file tree
Hide file tree
Showing 20 changed files with 1,775 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# .gitignore template for skeleton-based apps
/compiled
/qx_packages
.package-cache.json
34 changes: 34 additions & 0 deletions Manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"$schema": "https://raw.githubusercontent.com/qooxdoo/qooxdoo-compiler/master/source/resource/qx/tool/schema/Manifest-1-0-0.json",
"info": {
"name": "tutorial",
"summary": "",
"description": "",
"homepage": "",
"license": "MIT license",
"authors": [
{
"name": "",
"email": ""
}
],
"version": "1.0.0"
},
"provides": {
"namespace": "tutorial",
"encoding": "utf-8",
"class": "source/class",
"resource": "source/resource",
"translation": "source/translation"
},
"externalResources": {
"script": [],
"css": [
"qxl/tutorial/scss/custom.scss"
]
},
"requires": {
"@qooxdoo/framework": "^6.0.0-beta",
"@qooxdoo/compiler": "^1.0.0-beta"
}
}
38 changes: 38 additions & 0 deletions compile.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"$schema": "https://raw.githubusercontent.com/qooxdoo/qooxdoo-compiler/master/source/resource/qx/tool/schema/compile-1-0-0.json",
"targets": [
{
"type": "source",
"outputPath": "compiled/source",
"bundle": {
"include": "qx.*"
}
},
{
"type": "build",
"outputPath": "compiled/build"
}
],
"defaultTarget": "source",
"locales": [
"en"
],
"environment": {
"qx.icontheme": "Tango"
},
"applications": [
{
"class": "qxl.tutorial.Application",
"theme": "qx.theme.Indigo",
"name": "tutorial",
"include": [
"qx.*"
]
}

],
"sass": {
"compiler": "legacy"
}

}
29 changes: 29 additions & 0 deletions qx-lock.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"libraries": [
{
"library_name": "logpane",
"library_version": "1.0.0",
"path": "qx_packages/qooxdoo_qxl_logpane_v1_0_0",
"uri": "qooxdoo/qxl.logpane",
"repo_name": "qooxdoo/qxl.logpane",
"repo_tag": "v1.0.0"
},
{
"library_name": "versionlabel",
"library_version": "1.0.0",
"path": "qx_packages/qooxdoo_qxl_versionlabel_v1_0_0",
"uri": "qooxdoo/qxl.versionlabel",
"repo_name": "qooxdoo/qxl.versionlabel",
"repo_tag": "v1.0.0"
},
{
"library_name": "Playground",
"library_version": "1.0.0",
"path": "qx_packages/qooxdoo_qxl_playground_v1_0_0",
"uri": "qooxdoo/qxl.playground",
"repo_name": "qooxdoo/qxl.playground",
"repo_tag": "v1.0.0"
}
],
"version": "2.1.0"
}
Loading

0 comments on commit 0f6fb39

Please sign in to comment.