Skip to content

Commit

Permalink
Genie 4 apps generate Genie 4 apps
Browse files Browse the repository at this point in the history
  • Loading branch information
essenciary committed Aug 10, 2022
1 parent 8686f9f commit 600dba5
Show file tree
Hide file tree
Showing 15 changed files with 3 additions and 298 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Genie"
uuid = "c43c736e-a2d1-11e8-161f-af95117fbd1e"
authors = ["Adrian Salceanu <[email protected]>"]
version = "4.19"
version = "4.20.0"

[deps]
ArgParse = "c7e460c6-2fb9-53a9-8c5b-16f535851c63"
Expand Down
7 changes: 0 additions & 7 deletions docs/src/api/httputils.md

This file was deleted.

18 changes: 0 additions & 18 deletions docs/src/api/index.md

This file was deleted.

46 changes: 0 additions & 46 deletions docs/src/api/renderer-html.md

This file was deleted.

11 changes: 0 additions & 11 deletions docs/src/api/renderer-js.md

This file was deleted.

10 changes: 0 additions & 10 deletions docs/src/api/renderer-json.md

This file was deleted.

24 changes: 0 additions & 24 deletions docs/src/api/renderer.md

This file was deleted.

20 changes: 0 additions & 20 deletions docs/src/api/requests.md

This file was deleted.

16 changes: 0 additions & 16 deletions docs/src/api/responses.md

This file was deleted.

67 changes: 0 additions & 67 deletions docs/src/api/router.md

This file was deleted.

17 changes: 0 additions & 17 deletions docs/src/api/sessions.md

This file was deleted.

18 changes: 0 additions & 18 deletions docs/src/api/toolbox.md

This file was deleted.

10 changes: 0 additions & 10 deletions docs/src/api/util.md

This file was deleted.

28 changes: 0 additions & 28 deletions docs/src/api/webchannels.md

This file was deleted.

7 changes: 2 additions & 5 deletions src/Generator.jl
Original file line number Diff line number Diff line change
Expand Up @@ -396,12 +396,9 @@ function install_app_dependencies(app_path::String = "."; testmode::Bool = false
@info "Installing app dependencies"
Pkg.activate(".")

pkgs = ["Dates", "Logging", "LoggingExtras", "MbedTLS"]
Pkg.add(Pkg.PackageSpec(; name="Genie", version="4"))

testmode ? Pkg.develop("Genie", io = devnull) : push!(pkgs, "Genie")
testmode ? Pkg.develop("Inflector", io = devnull) : push!(pkgs, "Inflector")

Pkg.add(pkgs, io = devnull)
Pkg.add(["Dates", "Logging", "LoggingExtras", "MbedTLS", "Inflector"], io = devnull)

result = dbsupport ? install_db_dependencies(testmode = testmode, dbadapter = dbadapter, interactive = interactive) : dbadapter

Expand Down

2 comments on commit 600dba5

@essenciary
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/66033

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v4.20.0 -m "<description of version>" 600dba59ba0d04230d099f85ac1e46bc5eab5b4e
git push origin v4.20.0

Please sign in to comment.