Skip to content

Commit f48f2c1

Browse files
committed
Merge branch 'main' of https://github.com/laffra/ltk
2 parents 30efa22 + e08c805 commit f48f2c1

File tree

3 files changed

+58
-3
lines changed

3 files changed

+58
-3
lines changed

.github/workflows/static.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Simple workflow for deploying static content to GitHub Pages
2+
name: Deploy static content to Pages
3+
4+
on:
5+
# Runs on pushes targeting the default branch
6+
push:
7+
branches: ["main"]
8+
9+
# Allows you to run this workflow manually from the Actions tab
10+
workflow_dispatch:
11+
12+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
13+
permissions:
14+
contents: read
15+
pages: write
16+
id-token: write
17+
18+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
19+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
20+
concurrency:
21+
group: "pages"
22+
cancel-in-progress: false
23+
24+
jobs:
25+
# Single deploy job since we're just deploying
26+
deploy:
27+
environment:
28+
name: github-pages
29+
url: ${{ steps.deployment.outputs.page_url }}
30+
runs-on: ubuntu-latest
31+
steps:
32+
- name: Checkout
33+
uses: actions/checkout@v3
34+
- name: Setup Pages
35+
uses: actions/configure-pages@v3
36+
- name: Upload artifact
37+
uses: actions/upload-pages-artifact@v2
38+
with:
39+
# Upload entire repository
40+
path: '.'
41+
- name: Deploy to GitHub Pages
42+
id: deployment
43+
uses: actions/deploy-pages@v2

CONTRIBUTING.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Contributing to LTK
2+
3+
If you found a bug with LTK, please [open an issue](https://github.com/laffra/ltk/issues/new).
4+
5+
If you have an idea on making LTK better, please send a Pull Request.
6+
7+
Build something with LTK and add your app to the [list of applications built with LTK](https://github.com/laffra/ltk/blob/main/README.md#applications-built-using-ltk).
8+
9+
Come watch a talk by [Chris Laffra](https://chrislaffra.com) on LTK at [PyData Eindhoven](https://eindhoven2023.pydata.org/pydata/talk/RJVRMT/) on November 30, 2023.

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# ltk
2-
LTK is a little toolkit for writing UIs in PyScript
2+
LTK is a little toolkit for writing UIs in PyScript. Take a look at the [LTK Kitchen Sink](https://laffra.github.io/ltk/) now.
33

44
LTK is implemented as a declarative Python library and leverages `jQuery` for DOM operations.
55

66
## Widget Specification
77

8-
New widget types are created by symply subclassing `ltk.Widget`:
8+
New widget types are created by subclassing `ltk.Widget`:
99

1010
```python
1111
class HBox(Widget):
@@ -90,8 +90,11 @@ Card("Buy Now").on("click", ltk.proxy(buy))
9090

9191
## Examples
9292

93-
See the `LTK Kitchen Sink` or explore the `examples` folder
93+
See the [LTK Kitchen Sink](https://laffra.github.io/ltk/) or explore the `examples` folder
9494

95+
## Applications built using LTK
96+
97+
- PySheets (more details soon)
9598

9699
## License
97100

0 commit comments

Comments
 (0)