Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
essenciary committed Sep 10, 2020
2 parents 918795b + de89b2e commit f51e821
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/src/guides/Working_With_Genie_Apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ Since practically HTML and Markdown views are HTML and Markdown files with some

---

## Accessing databases with `SeachLight` models
## Accessing databases with `SearchLight` models

You can get the most out of Genie by pairing it with its seamless ORM layer, SearchLight. SearchLight, a native Julia ORM, provides excellent support for working with relational databases. The Genie + SearchLight combo can be used to productively develop CRUD (Create-Read-Update-Delete) apps.

Expand Down
8 changes: 4 additions & 4 deletions src/Generator.jl
Original file line number Diff line number Diff line change
Expand Up @@ -126,19 +126,19 @@ Creates the bin/server and bin/repl binaries for Windows
"""
function setup_windows_bin_files(path::String = ".") :: Nothing
open(joinpath(path, Genie.config.path_bin, "repl.bat"), "w") do f
write(f, "$JULIA_PATH --color=yes --depwarn=no -q -i -- ../$(Genie.BOOTSTRAP_FILE_NAME) %*")
write(f, "\"$JULIA_PATH\" --color=yes --depwarn=no -q -i -- ../$(Genie.BOOTSTRAP_FILE_NAME) %*")
end

open(joinpath(path, Genie.config.path_bin, "server.bat"), "w") do f
write(f, "$JULIA_PATH --color=yes --depwarn=no -q -i -- ../$(Genie.BOOTSTRAP_FILE_NAME) s %*")
write(f, "\"$JULIA_PATH\" --color=yes --depwarn=no -q -i -- ../$(Genie.BOOTSTRAP_FILE_NAME) s %*")
end

open(joinpath(path, Genie.config.path_bin, "serverinteractive.bat"), "w") do f
write(f, "$JULIA_PATH --color=yes --depwarn=no -q -i -- ../$(Genie.BOOTSTRAP_FILE_NAME) si %*")
write(f, "\"$JULIA_PATH\" --color=yes --depwarn=no -q -i -- ../$(Genie.BOOTSTRAP_FILE_NAME) si %*")
end

open(joinpath(path, Genie.config.path_bin, "runtask.bat"), "w") do f
write(f, "$JULIA_PATH --color=yes --depwarn=no -q -- ../$(Genie.BOOTSTRAP_FILE_NAME) -r %*")
write(f, "\"$JULIA_PATH\" --color=yes --depwarn=no -q -- ../$(Genie.BOOTSTRAP_FILE_NAME) -r %*")
end

nothing
Expand Down

0 comments on commit f51e821

Please sign in to comment.