Skip to content

Commit

Permalink
Create css and js folders (empty)
Browse files Browse the repository at this point in the history
  • Loading branch information
essenciary committed Nov 6, 2024
1 parent 189b6fb commit 1085415
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/Generators.jl
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,9 @@ function app()
isfile("app.jl") && return

mkdir("lib")
mkpath("public/css/themes")
mkpath("public/js")

open("app.jl", "w") do io
write(io,
"""
Expand All @@ -153,7 +156,7 @@ function app()
# == Code import ==
# add your data analysis code here or in the lib folder. Code in lib/ will be
# automatically loaded
# automatically loaded
function mean_value(x)
sum(x) / length(x)
end
Expand Down Expand Up @@ -196,7 +199,7 @@ function app()
# == Advanced features ==
#=
- The @private macro defines a reactive variable that is not sent to the browser.
- The @private macro defines a reactive variable that is not sent to the browser.
This is useful for storing data that is unique to each user session but is not needed
in the UI.
@private table = DataFrame(a = 1:10, b = 10:19, c = 20:29)
Expand Down

0 comments on commit 1085415

Please sign in to comment.