Commit graph

8 commits

Author SHA1 Message Date
José Valim
edefa6649a Avoid compile-connected dependencies
Before this commit, LivebookWeb had runtime dependencies into
the project, causing large compilation cycles.

Using the following command in Elixir v1.17.3+

    $ mix xref graph --format stats --label compile-connected

Would reveal:

    Top 10 files with most incoming dependencies:
      * lib/livebook_web.ex (97)
      * lib/livebook/config.ex (3)
      * proto/lib/livebook_proto/deployment_group.pb.ex (2)

After this patch:

    Top 10 files with most incoming dependencies:
      * lib/livebook/config.ex (3)
      * proto/lib/livebook_proto/deployment_group.pb.ex (2)
      * lib/livebook_web/plugs/memory_provider.ex (2)
2024-08-07 01:16:30 +02:00
Ed Lepedus
d4201c6c15
Add configuration to serve public routes from a different base url path (#2704)
Co-authored-by: Jonatan Kłosko <jonatanklosko@gmail.com>
2024-07-17 15:32:42 +02:00
Jonatan Kłosko
7b07c6518c Make dev script conditional at compile time 2024-05-10 13:45:57 +08:00
Jonatan Kłosko
785d3752f7 Enable server logs in the browser console in dev 2024-05-10 13:28:30 +08:00
Jonatan Kłosko
f3da231ac5
Migrate to esbuild (#1934) 2023-05-27 09:04:52 +02:00
Jonatan Kłosko
f262b9c0c9
Rebuild confirmation modal system (#1903) 2023-05-10 18:23:08 +02:00
Jonatan Kłosko
8eb93f3e24
Improve cookie access when running in iframe (#1888) 2023-04-28 14:50:40 +02:00
Jonatan Kłosko
5b5593a54b
Update to Phoenix 1.7 (#1720) 2023-02-22 19:34:54 +01:00