Skip to content

Commit ee54b95

Browse files
author
Adrian Salceanu
committed
Fix host to work on win, fix git line end for win
1 parent 1f1da6d commit ee54b95

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "Genie"
22
uuid = "c43c736e-a2d1-11e8-161f-af95117fbd1e"
33
authors = ["Adrian Salceanu <[email protected]> and the amazing Genie contributors ♥️"]
4-
version = "5.30.0"
4+
version = "5.30.1"
55

66
[deps]
77
ArgParse = "c7e460c6-2fb9-53a9-8c5b-16f535851c63"

files/new_app/.gitattributes

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
app/assets/* linguist-vendored
22
public/* linguist-vendored
3-
*.jl.html linguist-language=HTML
3+
*.jl.html linguist-language=HTML
4+
* text=auto
5+
*.sh text eol=lf
6+
*.conf text eol=lf

files/new_app/config/env/prod.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ using Genie, Logging
22

33
Genie.Configuration.config!(
44
server_port = 8000,
5-
server_host = "0.0.0.0",
5+
server_host = (Sys.iswindows() ? "127.0.0.1" : "0.0.0.0"),
66
log_level = Logging.Error,
77
log_to_file = false,
88
server_handle_static_files = true, # for best performance set up Nginx or Apache web proxies and set this to false

0 commit comments

Comments
 (0)