Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
8da4c27
use the latest version of the cli
ealmloff Sep 19, 2025
01dc035
Get the server compiling again
ealmloff Sep 19, 2025
bc5967b
playground and server running
ealmloff Sep 22, 2025
83e95c4
initially running
ealmloff Sep 23, 2025
d06b385
don't panic every time we edit the code
ealmloff Sep 23, 2025
28dc156
use tower instead or rebuilding our own file server
ealmloff Sep 23, 2025
ba85fd2
fix hot reloading the prebuilt examples
ealmloff Sep 24, 2025
36ecd37
command enter shortcut
ealmloff Sep 24, 2025
44db564
fix error messages
ealmloff Sep 24, 2025
74e867e
Fix showing error logs on the preview pannel
ealmloff Sep 24, 2025
cd622da
clean up some lints
ealmloff Sep 24, 2025
7020556
add per user rate limit and build rate limit
ealmloff Sep 24, 2025
64b0fa7
cleanup based on directory size instead of a timeout
ealmloff Sep 24, 2025
c2a8d50
Fix file cleanup logic
ealmloff Sep 25, 2025
13bc855
add a memory limit to dx
ealmloff Sep 25, 2025
87d357c
limit the amount of memory dx can use
ealmloff Sep 25, 2025
d10c419
lower default timeout
ealmloff Sep 26, 2025
313b033
hide env vars
ealmloff Sep 26, 2025
21c2b8c
handle hot patching from the server side
ealmloff Sep 26, 2025
340d7c0
Implement hot patching
ealmloff Oct 2, 2025
4f50f3e
fix dx version
ealmloff Oct 2, 2025
3aff2b6
fix template dioxus dep
ealmloff Oct 2, 2025
4ef75b2
Add component library example
ealmloff Oct 6, 2025
8af3408
fix full rebuilds
ealmloff Oct 6, 2025
275368f
use the component library for the modal
ealmloff Oct 7, 2025
9f33b1f
examples dropdown
ealmloff Oct 7, 2025
375270f
Fix share feature
ealmloff Oct 8, 2025
3b04217
fix loading shared projects
ealmloff Oct 8, 2025
c82b696
better styles
ealmloff Oct 8, 2025
8e5c0a1
bump dioxus
ealmloff Oct 8, 2025
a3b8f7b
clean up UI
ealmloff Oct 9, 2025
c1b4fe1
pin diouxs versions
ealmloff Oct 9, 2025
df69be3
remove untracked files
ealmloff Oct 9, 2025
d649c4f
Fix prebuild
ealmloff Oct 10, 2025
e4176e9
use dioxus 0.7-rc.1 in the playground
ealmloff Oct 10, 2025
391786d
fix hotreloading
ealmloff Oct 13, 2025
62bdaba
cleanup
ealmloff Oct 13, 2025
7a21d74
better error formatting
ealmloff Oct 13, 2025
15e1a33
fix text contrast
ealmloff Oct 13, 2025
19e02dd
clean up some dead code
ealmloff Oct 14, 2025
f569a75
clean up and switch to stores
ealmloff Oct 14, 2025
6ccd6f9
Merge branch 'playground' of https://github.com/ealmloff/docsite into…
ealmloff Oct 14, 2025
6a4c12c
bump dioxus
ealmloff Oct 14, 2025
85c6847
more cleanup
ealmloff Oct 14, 2025
931f342
fix clippy warnings in the playground
ealmloff Oct 14, 2025
61e45e4
fix remaining clippy issues
ealmloff Oct 14, 2025
69700fd
fix formatting
ealmloff Oct 14, 2025
6da87d9
more cleanup
ealmloff Oct 14, 2025
ce3a2bd
fix production server url
ealmloff Oct 14, 2025
c77516d
remove _dioxus handler
ealmloff Oct 14, 2025
66b94a4
update lockfile
ealmloff Oct 20, 2025
be30cd1
update backend location
ealmloff Oct 20, 2025
dca2b43
update location in playground urls
ealmloff Oct 20, 2025
11980f6
binstall the CLI
ealmloff Oct 21, 2025
7c0a0ab
bump dioxus version
ealmloff Oct 21, 2025
4ab4d43
Merge remote-tracking branch 'origin/main' into playground
jkelleyrtp Oct 27, 2025
df9d655
inline the sdk functions we need
jkelleyrtp Oct 27, 2025
a4f27fa
updte lock
jkelleyrtp Oct 27, 2025
92e01c5
compile err
jkelleyrtp Oct 27, 2025
8f3819b
Fix running the server from the root of the workspace
ealmloff Oct 28, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
cache-on-failure: "false"
- uses: cargo-bins/cargo-binstall@main
- name: Install CLI
run: cargo binstall dioxus-cli -y --force --version 0.7.0-rc.0
run: cargo binstall dioxus-cli -y --force --version 0.7.0-rc.1
- name: Build
run: cd packages/docsite && dx build --verbose --trace --platform web --fullstack true --features fullstack,production --release --ssg
- name: Generate search index
Expand Down
Loading