├── .github ├── FUNDING.yml └── workflows │ ├── docker-esy.yml │ ├── docker-opam.yml │ ├── heroku.yml │ ├── systemd.yml │ └── test.yml ├── .gitignore ├── .ocamlformat ├── LICENSE.md ├── Makefile ├── README.md ├── docs ├── CONTRIBUTING.md ├── asset │ ├── fullstack.png │ ├── graphiql.png │ ├── log-sanitized.html │ ├── log-sanitized.png │ ├── no-xss.png │ ├── sample.html │ ├── sample.png │ ├── session.png │ ├── sql.png │ ├── subscription.gif │ ├── websocket.png │ └── xss.png └── web │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── highlight-offline.js │ ├── package-lock.json │ ├── package.json │ ├── postprocess │ ├── common.ml │ ├── dune │ └── index.ml │ ├── site │ ├── docs.css │ ├── docs.js │ ├── fa-brands-400.woff2 │ ├── fa-solid-900.woff2 │ ├── highlight.pack.js │ ├── iosevka-regular.woff2 │ ├── lato-v17-latin-700.woff2 │ ├── lato-v17-latin-italic.woff2 │ ├── lato-v17-latin-regular.woff2 │ └── tenor-sans-v12-latin-regular.woff2 │ ├── soupault.conf │ ├── templates │ ├── default.html │ └── index.html │ ├── web.opam │ └── web.opam.locked ├── dream-httpaf.opam ├── dream-mirage.opam ├── dream-pure.opam ├── dream.opam ├── dune-project ├── example ├── 0 Scroll down for the README! │ └── .gitkeep ├── 1-hello │ ├── 1-hello.opam │ ├── README.md │ ├── dune │ ├── dune-project │ └── hello.ml ├── 2-middleware │ ├── 2-middleware.opam │ ├── README.md │ ├── dune │ ├── dune-project │ └── middleware.ml ├── 3-router │ ├── 3-router.opam │ ├── README.md │ ├── dune │ ├── dune-project │ └── router.ml ├── 4-counter │ ├── 4-counter.opam │ ├── README.md │ ├── counter.ml │ ├── dune │ └── dune-project ├── 5-promise │ ├── 5-promise.opam │ ├── README.md │ ├── dune │ ├── dune-project │ └── promise.ml ├── 6-echo │ ├── 6-echo.opam │ ├── README.md │ ├── dune │ ├── dune-project │ └── echo.ml ├── 7-template │ ├── 7-template.opam │ ├── README.md │ ├── dune │ ├── dune-project │ └── template.eml.ml ├── 8-debug │ ├── 8-debug.opam │ ├── README.md │ ├── debug.ml │ ├── dune │ └── dune-project ├── 9-error │ ├── 9-error.opam │ ├── README.md │ ├── dune │ ├── dune-project │ └── error.eml.ml ├── README.md ├── a-log │ ├── README.md │ ├── a-log.opam │ ├── dune │ ├── dune-project │ └── log.ml ├── b-session │ ├── README.md │ ├── b-session.opam │ ├── dune │ ├── dune-project │ └── session.ml ├── c-cookie │ ├── README.md │ ├── c-cookie.opam │ ├── cookie.ml │ ├── dune │ └── dune-project ├── d-form │ ├── README.md │ ├── d-form.opam │ ├── dune │ ├── dune-project │ └── form.eml.ml ├── e-json │ ├── README.md │ ├── dune │ ├── dune-project │ ├── e-json.opam │ └── json.ml ├── f-static │ ├── README.md │ ├── dune │ ├── dune-project │ ├── f-static.opam │ └── static.ml ├── g-upload │ ├── README.md │ ├── dune │ ├── dune-project │ ├── g-upload.opam │ └── upload.eml.ml ├── h-sql │ ├── README.md │ ├── db.sqlite │ ├── dune │ ├── dune-project │ ├── h-sql.opam │ └── sql.eml.ml ├── i-graphql │ ├── README.md │ ├── dune │ ├── dune-project │ ├── graphql.ml │ └── i-graphql.opam ├── j-stream │ ├── README.md │ ├── dune │ ├── dune-project │ ├── j-stream.opam │ └── stream.ml ├── k-websocket │ ├── README.md │ ├── dune │ ├── dune-project │ ├── k-websocket.opam │ └── websocket.eml.ml ├── l-https │ ├── README.md │ ├── dune │ ├── dune-project │ ├── https.ml │ └── l-https.opam ├── quickstart.sh ├── r-fullstack-melange │ ├── .gitignore │ ├── README.md │ ├── client │ │ ├── client.re │ │ └── dune │ ├── common │ │ ├── common.re │ │ └── dune │ ├── dune-project │ ├── r-fullstack-melange.opam │ └── server │ │ ├── dune │ │ └── server.eml.re ├── r-graphql │ ├── README.md │ ├── dune │ ├── dune-project │ ├── esy.json │ └── graphql.re ├── r-hello │ ├── README.md │ ├── dune │ ├── dune-project │ ├── esy.json │ └── hello.re ├── r-html_of_jsx │ ├── README.md │ ├── dune │ ├── dune-project │ ├── esy.json │ └── html_of_jsx.re ├── r-template-files │ ├── README.md │ ├── dune │ ├── dune-project │ ├── esy.json │ ├── server.re │ └── template.eml.html ├── r-template-logic │ ├── README.md │ ├── dune │ ├── dune-project │ ├── esy.json │ └── template.eml.re ├── r-template-stream │ ├── README.md │ ├── dune │ ├── dune-project │ ├── esy.json │ └── template_stream.eml.re ├── r-template │ ├── README.md │ ├── dune │ ├── dune-project │ ├── esy.json │ └── template.eml.re ├── r-tyxml │ ├── README.md │ ├── dune │ ├── dune-project │ ├── esy.json │ └── tyxml.re ├── w-chat │ ├── README.md │ ├── chat.eml.ml │ ├── dune │ ├── dune-project │ └── w-chat.opam ├── w-content-security-policy │ ├── README.md │ ├── content_security_policy.eml.ml │ ├── dune │ ├── dune-project │ └── w-content-security-policy.opam ├── w-dream-html │ ├── README.md │ ├── dune │ ├── dune-project │ ├── html.ml │ └── w-dream-html.opam ├── w-esy │ ├── .gitignore │ ├── README.md │ ├── dune │ ├── dune-project │ ├── esy.json │ └── hello.ml ├── w-flash │ ├── README.md │ ├── dune │ ├── dune-project │ ├── flash.eml.ml │ └── w-flash.opam ├── w-fullstack-jsoo │ ├── .gitignore │ ├── README.md │ ├── client │ │ ├── client.ml │ │ └── dune │ ├── common │ │ ├── common.ml │ │ └── dune │ ├── dune-project │ ├── server │ │ ├── dune │ │ └── server.eml.ml │ └── w-fullstack-jsoo.opam ├── w-fullstack-rescript │ ├── .gitignore │ ├── README.md │ ├── bsconfig.json │ ├── client │ │ └── client.res │ ├── common │ │ ├── common.ml │ │ └── dune │ ├── dune │ ├── dune-project │ ├── esy.json │ ├── package.json │ └── server │ │ ├── dune │ │ └── server.eml.ml ├── w-graphql-subscription │ ├── README.md │ ├── dune │ ├── dune-project │ ├── graphql_subscription.ml │ └── w-graphql-subscription.opam ├── w-live-reload │ ├── README.md │ ├── dune │ ├── dune-project │ ├── live_reload.ml │ └── w-live-reload.opam ├── w-long-polling │ ├── README.md │ ├── dune │ ├── dune-project │ ├── long_polling.eml.ml │ └── w-long-polling.opam ├── w-mirage-letsencrypt │ ├── README.md │ ├── _tags │ ├── config.ml │ └── unikernel.ml ├── w-mirage │ ├── README.md │ ├── config.ml │ └── unikernel.ml ├── w-mlx │ ├── README.md │ ├── dune │ ├── dune-project │ ├── dune-workspace │ ├── mlx.mlx │ └── w-mlx.opam ├── w-multipart-dump │ ├── README.md │ ├── dune │ ├── dune-project │ ├── multipart_dump.eml.ml │ └── w-multipart-dump.opam ├── w-nginx │ ├── Dockerfile │ ├── README.md │ ├── assets │ │ ├── README.md │ │ └── camel.jpeg │ ├── docker-compose.yml │ ├── dune │ ├── dune-project │ ├── nginx.conf │ ├── server.eml.ml │ └── w-nginx.opam ├── w-one-binary │ ├── .gitignore │ ├── README.md │ ├── assets │ │ ├── README.md │ │ └── camel.jpeg │ ├── dune │ ├── dune-project │ ├── one_binary.ml │ └── w-one-binary.opam ├── w-postgres │ ├── .dockerignore │ ├── Dockerfile │ ├── README.md │ ├── docker-compose.yml │ ├── dune │ ├── dune-project │ ├── postgres.eml.ml │ ├── schema.sql │ └── w-postgres.opam ├── w-query │ ├── README.md │ ├── dune │ ├── dune-project │ ├── query.ml │ └── w-query.opam ├── w-server-sent-events │ ├── README.md │ ├── dune │ ├── dune-project │ ├── server_sent_events.eml.ml │ └── w-server-sent-events.opam ├── w-stress-response │ ├── README.md │ ├── dune │ ├── dune-project │ ├── stress_response.ml │ └── w-stress-response.opam ├── w-stress-websocket-send │ ├── README.md │ ├── dune │ ├── dune-project │ ├── stress_websocket_send.eml.ml │ └── w-stress-websocket.opam ├── w-template-files │ ├── README.md │ ├── dune │ ├── dune-project │ ├── server.ml │ ├── template.eml.html │ └── w-template-files.opam ├── w-template-logic │ ├── README.md │ ├── dune │ ├── dune-project │ ├── template.eml.ml │ └── w-template-logic.opam ├── w-template-stream │ ├── README.md │ ├── dune │ ├── dune-project │ ├── template_stream.eml.ml │ └── w-template-stream.opam ├── w-tyxml │ ├── README.md │ ├── dune │ ├── dune-project │ ├── tyxml.ml │ └── w-tyxml.opam ├── w-upload-stream │ ├── README.md │ ├── dune │ ├── dune-project │ ├── upload_stream.eml.ml │ └── w-upload-stream.opam ├── w-watch │ ├── README.md │ ├── dune │ ├── dune-project │ ├── hello.ml │ └── w-watch.opam ├── z-docker-esy │ ├── .dockerignore │ ├── Dockerfile │ ├── README.md │ ├── app.ml │ ├── deploy.sh │ ├── docker-compose.yml │ ├── dune │ ├── dune-project │ └── esy.json ├── z-docker-opam │ ├── .dockerignore │ ├── Dockerfile │ ├── README.md │ ├── app.ml │ ├── deploy.sh │ ├── docker-compose.yml │ ├── dune │ ├── dune-project │ └── z-docker-opam.opam ├── z-fly │ ├── .dockerignore │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── app.ml │ ├── docker-compose.yml │ ├── dune │ ├── dune-project │ └── esy.json ├── z-heroku │ ├── .gitignore │ ├── .slugignore │ ├── Procfile │ ├── README.md │ ├── app.ml │ ├── dune │ ├── dune-project │ └── esy.json ├── z-playground │ ├── .gitignore │ ├── README.md │ ├── client │ │ ├── client.eml.html │ │ ├── dune │ │ ├── playground.css │ │ └── playground.js │ ├── dune │ ├── dune-project │ ├── opam-switch │ ├── package-lock.json │ ├── package.json │ ├── runtime │ │ ├── dune │ │ ├── examples.ml │ │ ├── playground.eml.ml │ │ └── runtime.opam │ ├── sandbox │ │ ├── ocaml │ │ │ ├── keep │ │ │ └── server.eml.ml │ │ └── reason │ │ │ ├── keep │ │ │ └── server.eml.re │ ├── server │ │ ├── build.sh │ │ ├── deploy.sh │ │ ├── dune │ │ ├── playground.ml │ │ ├── playground.service │ │ ├── setup.sh │ │ └── sync.sh │ └── z-playground.opam └── z-systemd │ ├── README.md │ ├── app.ml │ ├── app.service │ ├── build.sh │ ├── deploy.sh │ ├── dune │ ├── dune-project │ └── z-systemd.opam ├── src ├── certificate │ ├── README.md │ ├── dune │ ├── generate.sh │ ├── localhost.cnf │ ├── localhost.crt │ └── localhost.key ├── cipher │ ├── cipher.ml │ ├── dune │ └── random.ml ├── dream.ml ├── dream.mli ├── dune ├── eml │ ├── dune │ ├── eml.ml │ └── main.ml ├── graphiql │ ├── .gitattributes │ ├── .gitignore │ ├── Makefile │ ├── dune │ ├── index.bundle.html │ ├── index.html │ ├── package-lock.json │ └── package.json ├── graphql │ ├── dune │ └── graphql.ml ├── http │ ├── adapt.ml │ ├── dune │ ├── error_handler.ml │ ├── error_handler.mli │ ├── http.ml │ └── shared │ │ ├── dune │ │ └── websocket.ml ├── mirage │ ├── adapt.ml │ ├── dune │ ├── error_handler.ml │ ├── mirage.ml │ └── mirage.mli ├── pure │ ├── dune │ ├── formats.ml │ ├── formats.mli │ ├── message.ml │ ├── message.mli │ ├── method.ml │ ├── status.ml │ ├── stream.ml │ └── stream.mli ├── server │ ├── catch.ml │ ├── cookie.ml │ ├── csrf.ml │ ├── dune │ ├── echo.ml │ ├── error_template.eml.ml │ ├── flash.ml │ ├── form.ml │ ├── helpers.ml │ ├── livereload.ml │ ├── log.ml │ ├── origin_referrer_check.ml │ ├── query.ml │ ├── router.ml │ ├── router.mli │ ├── session.ml │ ├── site_prefix.ml │ ├── tag.eml.ml │ └── upload.ml ├── sql │ ├── dune │ ├── session.ml │ └── sql.ml └── unix │ ├── dune │ └── static.ml └── test ├── expect ├── eml │ ├── dune │ └── tokens.ml ├── pure │ ├── dune │ ├── formats │ │ ├── base64 │ │ │ ├── base64.ml │ │ │ └── dune │ │ ├── cookie │ │ │ ├── cookie.ml │ │ │ └── dune │ │ ├── escape │ │ │ ├── dune │ │ │ └── escape.ml │ │ ├── form_urlencoded │ │ │ ├── dune │ │ │ └── form_urlencoded.ml │ │ ├── path │ │ │ ├── dune │ │ │ └── path.ml │ │ ├── percent │ │ │ ├── dune │ │ │ └── percent.ml │ │ ├── query │ │ │ ├── dune │ │ │ └── query.ml │ │ └── target │ │ │ ├── dune │ │ │ └── target.ml │ ├── message │ │ ├── dune │ │ └── message.ml │ ├── method │ │ ├── dune │ │ └── method.ml │ ├── status │ │ ├── dune │ │ └── status.ml │ └── stream │ │ ├── dune │ │ └── stream.ml └── server │ ├── cipher │ ├── cipher.ml │ └── dune │ ├── dune │ ├── initialize.ml │ └── router.ml ├── ocamlformat ├── .gitignore ├── test.expect.ml └── test.ml ├── run-examples-esy.sh └── unit ├── dune ├── headers.ml ├── request.ml └── unit.ml /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: aantron 2 | -------------------------------------------------------------------------------- /.github/workflows/docker-esy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/.github/workflows/docker-esy.yml -------------------------------------------------------------------------------- /.github/workflows/docker-opam.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/.github/workflows/docker-opam.yml -------------------------------------------------------------------------------- /.github/workflows/heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/.github/workflows/heroku.yml -------------------------------------------------------------------------------- /.github/workflows/systemd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/.github/workflows/systemd.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/.gitignore -------------------------------------------------------------------------------- /.ocamlformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/.ocamlformat -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/README.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/asset/fullstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/asset/fullstack.png -------------------------------------------------------------------------------- /docs/asset/graphiql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/asset/graphiql.png -------------------------------------------------------------------------------- /docs/asset/log-sanitized.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/asset/log-sanitized.html -------------------------------------------------------------------------------- /docs/asset/log-sanitized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/asset/log-sanitized.png -------------------------------------------------------------------------------- /docs/asset/no-xss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/asset/no-xss.png -------------------------------------------------------------------------------- /docs/asset/sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/asset/sample.html -------------------------------------------------------------------------------- /docs/asset/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/asset/sample.png -------------------------------------------------------------------------------- /docs/asset/session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/asset/session.png -------------------------------------------------------------------------------- /docs/asset/sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/asset/sql.png -------------------------------------------------------------------------------- /docs/asset/subscription.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/asset/subscription.gif -------------------------------------------------------------------------------- /docs/asset/websocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/asset/websocket.png -------------------------------------------------------------------------------- /docs/asset/xss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/asset/xss.png -------------------------------------------------------------------------------- /docs/web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/web/.gitignore -------------------------------------------------------------------------------- /docs/web/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/web/Makefile -------------------------------------------------------------------------------- /docs/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/web/README.md -------------------------------------------------------------------------------- /docs/web/highlight-offline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/web/highlight-offline.js -------------------------------------------------------------------------------- /docs/web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/web/package-lock.json -------------------------------------------------------------------------------- /docs/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/web/package.json -------------------------------------------------------------------------------- /docs/web/postprocess/common.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/web/postprocess/common.ml -------------------------------------------------------------------------------- /docs/web/postprocess/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/web/postprocess/dune -------------------------------------------------------------------------------- /docs/web/postprocess/index.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/web/postprocess/index.ml -------------------------------------------------------------------------------- /docs/web/site/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/web/site/docs.css -------------------------------------------------------------------------------- /docs/web/site/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/web/site/docs.js -------------------------------------------------------------------------------- /docs/web/site/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/web/site/fa-brands-400.woff2 -------------------------------------------------------------------------------- /docs/web/site/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/web/site/fa-solid-900.woff2 -------------------------------------------------------------------------------- /docs/web/site/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/web/site/highlight.pack.js -------------------------------------------------------------------------------- /docs/web/site/iosevka-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/web/site/iosevka-regular.woff2 -------------------------------------------------------------------------------- /docs/web/site/lato-v17-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/web/site/lato-v17-latin-700.woff2 -------------------------------------------------------------------------------- /docs/web/site/lato-v17-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/web/site/lato-v17-latin-italic.woff2 -------------------------------------------------------------------------------- /docs/web/site/lato-v17-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/web/site/lato-v17-latin-regular.woff2 -------------------------------------------------------------------------------- /docs/web/site/tenor-sans-v12-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/web/site/tenor-sans-v12-latin-regular.woff2 -------------------------------------------------------------------------------- /docs/web/soupault.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/web/soupault.conf -------------------------------------------------------------------------------- /docs/web/templates/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/web/templates/default.html -------------------------------------------------------------------------------- /docs/web/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/web/templates/index.html -------------------------------------------------------------------------------- /docs/web/web.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/web/web.opam -------------------------------------------------------------------------------- /docs/web/web.opam.locked: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/docs/web/web.opam.locked -------------------------------------------------------------------------------- /dream-httpaf.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/dream-httpaf.opam -------------------------------------------------------------------------------- /dream-mirage.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/dream-mirage.opam -------------------------------------------------------------------------------- /dream-pure.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/dream-pure.opam -------------------------------------------------------------------------------- /dream.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/dream.opam -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.7) 2 | -------------------------------------------------------------------------------- /example/0 Scroll down for the README!/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/1-hello/1-hello.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/1-hello/1-hello.opam -------------------------------------------------------------------------------- /example/1-hello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/1-hello/README.md -------------------------------------------------------------------------------- /example/1-hello/dune: -------------------------------------------------------------------------------- 1 | (executable 2 | (name hello) 3 | (libraries dream)) 4 | -------------------------------------------------------------------------------- /example/1-hello/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/1-hello/hello.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/1-hello/hello.ml -------------------------------------------------------------------------------- /example/2-middleware/2-middleware.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/2-middleware/2-middleware.opam -------------------------------------------------------------------------------- /example/2-middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/2-middleware/README.md -------------------------------------------------------------------------------- /example/2-middleware/dune: -------------------------------------------------------------------------------- 1 | (executable 2 | (name middleware) 3 | (libraries dream)) 4 | -------------------------------------------------------------------------------- /example/2-middleware/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/2-middleware/middleware.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/2-middleware/middleware.ml -------------------------------------------------------------------------------- /example/3-router/3-router.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/3-router/3-router.opam -------------------------------------------------------------------------------- /example/3-router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/3-router/README.md -------------------------------------------------------------------------------- /example/3-router/dune: -------------------------------------------------------------------------------- 1 | (executable 2 | (name router) 3 | (libraries dream)) 4 | -------------------------------------------------------------------------------- /example/3-router/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/3-router/router.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/3-router/router.ml -------------------------------------------------------------------------------- /example/4-counter/4-counter.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/4-counter/4-counter.opam -------------------------------------------------------------------------------- /example/4-counter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/4-counter/README.md -------------------------------------------------------------------------------- /example/4-counter/counter.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/4-counter/counter.ml -------------------------------------------------------------------------------- /example/4-counter/dune: -------------------------------------------------------------------------------- 1 | (executable 2 | (name counter) 3 | (libraries dream)) 4 | -------------------------------------------------------------------------------- /example/4-counter/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/5-promise/5-promise.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/5-promise/5-promise.opam -------------------------------------------------------------------------------- /example/5-promise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/5-promise/README.md -------------------------------------------------------------------------------- /example/5-promise/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/5-promise/dune -------------------------------------------------------------------------------- /example/5-promise/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/5-promise/promise.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/5-promise/promise.ml -------------------------------------------------------------------------------- /example/6-echo/6-echo.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/6-echo/6-echo.opam -------------------------------------------------------------------------------- /example/6-echo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/6-echo/README.md -------------------------------------------------------------------------------- /example/6-echo/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/6-echo/dune -------------------------------------------------------------------------------- /example/6-echo/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/6-echo/echo.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/6-echo/echo.ml -------------------------------------------------------------------------------- /example/7-template/7-template.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/7-template/7-template.opam -------------------------------------------------------------------------------- /example/7-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/7-template/README.md -------------------------------------------------------------------------------- /example/7-template/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/7-template/dune -------------------------------------------------------------------------------- /example/7-template/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/7-template/template.eml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/7-template/template.eml.ml -------------------------------------------------------------------------------- /example/8-debug/8-debug.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/8-debug/8-debug.opam -------------------------------------------------------------------------------- /example/8-debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/8-debug/README.md -------------------------------------------------------------------------------- /example/8-debug/debug.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/8-debug/debug.ml -------------------------------------------------------------------------------- /example/8-debug/dune: -------------------------------------------------------------------------------- 1 | (executable 2 | (name debug) 3 | (libraries dream)) 4 | -------------------------------------------------------------------------------- /example/8-debug/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/9-error/9-error.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/9-error/9-error.opam -------------------------------------------------------------------------------- /example/9-error/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/9-error/README.md -------------------------------------------------------------------------------- /example/9-error/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/9-error/dune -------------------------------------------------------------------------------- /example/9-error/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/9-error/error.eml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/9-error/error.eml.ml -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/README.md -------------------------------------------------------------------------------- /example/a-log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/a-log/README.md -------------------------------------------------------------------------------- /example/a-log/a-log.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/a-log/a-log.opam -------------------------------------------------------------------------------- /example/a-log/dune: -------------------------------------------------------------------------------- 1 | (executable 2 | (name log) 3 | (libraries dream)) 4 | -------------------------------------------------------------------------------- /example/a-log/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/a-log/log.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/a-log/log.ml -------------------------------------------------------------------------------- /example/b-session/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/b-session/README.md -------------------------------------------------------------------------------- /example/b-session/b-session.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/b-session/b-session.opam -------------------------------------------------------------------------------- /example/b-session/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/b-session/dune -------------------------------------------------------------------------------- /example/b-session/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/b-session/session.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/b-session/session.ml -------------------------------------------------------------------------------- /example/c-cookie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/c-cookie/README.md -------------------------------------------------------------------------------- /example/c-cookie/c-cookie.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/c-cookie/c-cookie.opam -------------------------------------------------------------------------------- /example/c-cookie/cookie.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/c-cookie/cookie.ml -------------------------------------------------------------------------------- /example/c-cookie/dune: -------------------------------------------------------------------------------- 1 | (executable 2 | (name cookie) 3 | (libraries dream)) 4 | -------------------------------------------------------------------------------- /example/c-cookie/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/d-form/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/d-form/README.md -------------------------------------------------------------------------------- /example/d-form/d-form.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/d-form/d-form.opam -------------------------------------------------------------------------------- /example/d-form/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/d-form/dune -------------------------------------------------------------------------------- /example/d-form/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/d-form/form.eml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/d-form/form.eml.ml -------------------------------------------------------------------------------- /example/e-json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/e-json/README.md -------------------------------------------------------------------------------- /example/e-json/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/e-json/dune -------------------------------------------------------------------------------- /example/e-json/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/e-json/e-json.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/e-json/e-json.opam -------------------------------------------------------------------------------- /example/e-json/json.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/e-json/json.ml -------------------------------------------------------------------------------- /example/f-static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/f-static/README.md -------------------------------------------------------------------------------- /example/f-static/dune: -------------------------------------------------------------------------------- 1 | (executable 2 | (name static) 3 | (libraries dream)) 4 | -------------------------------------------------------------------------------- /example/f-static/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/f-static/f-static.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/f-static/f-static.opam -------------------------------------------------------------------------------- /example/f-static/static.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/f-static/static.ml -------------------------------------------------------------------------------- /example/g-upload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/g-upload/README.md -------------------------------------------------------------------------------- /example/g-upload/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/g-upload/dune -------------------------------------------------------------------------------- /example/g-upload/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/g-upload/g-upload.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/g-upload/g-upload.opam -------------------------------------------------------------------------------- /example/g-upload/upload.eml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/g-upload/upload.eml.ml -------------------------------------------------------------------------------- /example/h-sql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/h-sql/README.md -------------------------------------------------------------------------------- /example/h-sql/db.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/h-sql/db.sqlite -------------------------------------------------------------------------------- /example/h-sql/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/h-sql/dune -------------------------------------------------------------------------------- /example/h-sql/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/h-sql/h-sql.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/h-sql/h-sql.opam -------------------------------------------------------------------------------- /example/h-sql/sql.eml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/h-sql/sql.eml.ml -------------------------------------------------------------------------------- /example/i-graphql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/i-graphql/README.md -------------------------------------------------------------------------------- /example/i-graphql/dune: -------------------------------------------------------------------------------- 1 | (executable 2 | (name graphql) 3 | (libraries dream)) 4 | -------------------------------------------------------------------------------- /example/i-graphql/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/i-graphql/graphql.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/i-graphql/graphql.ml -------------------------------------------------------------------------------- /example/i-graphql/i-graphql.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/i-graphql/i-graphql.opam -------------------------------------------------------------------------------- /example/j-stream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/j-stream/README.md -------------------------------------------------------------------------------- /example/j-stream/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/j-stream/dune -------------------------------------------------------------------------------- /example/j-stream/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/j-stream/j-stream.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/j-stream/j-stream.opam -------------------------------------------------------------------------------- /example/j-stream/stream.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/j-stream/stream.ml -------------------------------------------------------------------------------- /example/k-websocket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/k-websocket/README.md -------------------------------------------------------------------------------- /example/k-websocket/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/k-websocket/dune -------------------------------------------------------------------------------- /example/k-websocket/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/k-websocket/k-websocket.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/k-websocket/k-websocket.opam -------------------------------------------------------------------------------- /example/k-websocket/websocket.eml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/k-websocket/websocket.eml.ml -------------------------------------------------------------------------------- /example/l-https/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/l-https/README.md -------------------------------------------------------------------------------- /example/l-https/dune: -------------------------------------------------------------------------------- 1 | (executable 2 | (name https) 3 | (libraries dream)) 4 | -------------------------------------------------------------------------------- /example/l-https/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/l-https/https.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/l-https/https.ml -------------------------------------------------------------------------------- /example/l-https/l-https.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/l-https/l-https.opam -------------------------------------------------------------------------------- /example/quickstart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/quickstart.sh -------------------------------------------------------------------------------- /example/r-fullstack-melange/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-fullstack-melange/.gitignore -------------------------------------------------------------------------------- /example/r-fullstack-melange/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-fullstack-melange/README.md -------------------------------------------------------------------------------- /example/r-fullstack-melange/client/client.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-fullstack-melange/client/client.re -------------------------------------------------------------------------------- /example/r-fullstack-melange/client/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-fullstack-melange/client/dune -------------------------------------------------------------------------------- /example/r-fullstack-melange/common/common.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-fullstack-melange/common/common.re -------------------------------------------------------------------------------- /example/r-fullstack-melange/common/dune: -------------------------------------------------------------------------------- 1 | (library 2 | (name common) 3 | (modes best melange)) 4 | -------------------------------------------------------------------------------- /example/r-fullstack-melange/dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-fullstack-melange/dune-project -------------------------------------------------------------------------------- /example/r-fullstack-melange/r-fullstack-melange.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-fullstack-melange/r-fullstack-melange.opam -------------------------------------------------------------------------------- /example/r-fullstack-melange/server/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-fullstack-melange/server/dune -------------------------------------------------------------------------------- /example/r-fullstack-melange/server/server.eml.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-fullstack-melange/server/server.eml.re -------------------------------------------------------------------------------- /example/r-graphql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-graphql/README.md -------------------------------------------------------------------------------- /example/r-graphql/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-graphql/dune -------------------------------------------------------------------------------- /example/r-graphql/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/r-graphql/esy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-graphql/esy.json -------------------------------------------------------------------------------- /example/r-graphql/graphql.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-graphql/graphql.re -------------------------------------------------------------------------------- /example/r-hello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-hello/README.md -------------------------------------------------------------------------------- /example/r-hello/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-hello/dune -------------------------------------------------------------------------------- /example/r-hello/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/r-hello/esy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-hello/esy.json -------------------------------------------------------------------------------- /example/r-hello/hello.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-hello/hello.re -------------------------------------------------------------------------------- /example/r-html_of_jsx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-html_of_jsx/README.md -------------------------------------------------------------------------------- /example/r-html_of_jsx/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-html_of_jsx/dune -------------------------------------------------------------------------------- /example/r-html_of_jsx/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/r-html_of_jsx/esy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-html_of_jsx/esy.json -------------------------------------------------------------------------------- /example/r-html_of_jsx/html_of_jsx.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-html_of_jsx/html_of_jsx.re -------------------------------------------------------------------------------- /example/r-template-files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-template-files/README.md -------------------------------------------------------------------------------- /example/r-template-files/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-template-files/dune -------------------------------------------------------------------------------- /example/r-template-files/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/r-template-files/esy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-template-files/esy.json -------------------------------------------------------------------------------- /example/r-template-files/server.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-template-files/server.re -------------------------------------------------------------------------------- /example/r-template-files/template.eml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-template-files/template.eml.html -------------------------------------------------------------------------------- /example/r-template-logic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-template-logic/README.md -------------------------------------------------------------------------------- /example/r-template-logic/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-template-logic/dune -------------------------------------------------------------------------------- /example/r-template-logic/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/r-template-logic/esy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-template-logic/esy.json -------------------------------------------------------------------------------- /example/r-template-logic/template.eml.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-template-logic/template.eml.re -------------------------------------------------------------------------------- /example/r-template-stream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-template-stream/README.md -------------------------------------------------------------------------------- /example/r-template-stream/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-template-stream/dune -------------------------------------------------------------------------------- /example/r-template-stream/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/r-template-stream/esy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-template-stream/esy.json -------------------------------------------------------------------------------- /example/r-template-stream/template_stream.eml.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-template-stream/template_stream.eml.re -------------------------------------------------------------------------------- /example/r-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-template/README.md -------------------------------------------------------------------------------- /example/r-template/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-template/dune -------------------------------------------------------------------------------- /example/r-template/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/r-template/esy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-template/esy.json -------------------------------------------------------------------------------- /example/r-template/template.eml.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-template/template.eml.re -------------------------------------------------------------------------------- /example/r-tyxml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-tyxml/README.md -------------------------------------------------------------------------------- /example/r-tyxml/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-tyxml/dune -------------------------------------------------------------------------------- /example/r-tyxml/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/r-tyxml/esy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-tyxml/esy.json -------------------------------------------------------------------------------- /example/r-tyxml/tyxml.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/r-tyxml/tyxml.re -------------------------------------------------------------------------------- /example/w-chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-chat/README.md -------------------------------------------------------------------------------- /example/w-chat/chat.eml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-chat/chat.eml.ml -------------------------------------------------------------------------------- /example/w-chat/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-chat/dune -------------------------------------------------------------------------------- /example/w-chat/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/w-chat/w-chat.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-chat/w-chat.opam -------------------------------------------------------------------------------- /example/w-content-security-policy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-content-security-policy/README.md -------------------------------------------------------------------------------- /example/w-content-security-policy/content_security_policy.eml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-content-security-policy/content_security_policy.eml.ml -------------------------------------------------------------------------------- /example/w-content-security-policy/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-content-security-policy/dune -------------------------------------------------------------------------------- /example/w-content-security-policy/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/w-content-security-policy/w-content-security-policy.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-content-security-policy/w-content-security-policy.opam -------------------------------------------------------------------------------- /example/w-dream-html/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-dream-html/README.md -------------------------------------------------------------------------------- /example/w-dream-html/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-dream-html/dune -------------------------------------------------------------------------------- /example/w-dream-html/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/w-dream-html/html.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-dream-html/html.ml -------------------------------------------------------------------------------- /example/w-dream-html/w-dream-html.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-dream-html/w-dream-html.opam -------------------------------------------------------------------------------- /example/w-esy/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | _esy 3 | -------------------------------------------------------------------------------- /example/w-esy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-esy/README.md -------------------------------------------------------------------------------- /example/w-esy/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-esy/dune -------------------------------------------------------------------------------- /example/w-esy/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/w-esy/esy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-esy/esy.json -------------------------------------------------------------------------------- /example/w-esy/hello.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-esy/hello.ml -------------------------------------------------------------------------------- /example/w-flash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-flash/README.md -------------------------------------------------------------------------------- /example/w-flash/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-flash/dune -------------------------------------------------------------------------------- /example/w-flash/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/w-flash/flash.eml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-flash/flash.eml.ml -------------------------------------------------------------------------------- /example/w-flash/w-flash.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-flash/w-flash.opam -------------------------------------------------------------------------------- /example/w-fullstack-jsoo/.gitignore: -------------------------------------------------------------------------------- 1 | static/ 2 | -------------------------------------------------------------------------------- /example/w-fullstack-jsoo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-fullstack-jsoo/README.md -------------------------------------------------------------------------------- /example/w-fullstack-jsoo/client/client.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-fullstack-jsoo/client/client.ml -------------------------------------------------------------------------------- /example/w-fullstack-jsoo/client/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-fullstack-jsoo/client/dune -------------------------------------------------------------------------------- /example/w-fullstack-jsoo/common/common.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-fullstack-jsoo/common/common.ml -------------------------------------------------------------------------------- /example/w-fullstack-jsoo/common/dune: -------------------------------------------------------------------------------- 1 | (library 2 | (name common)) 3 | -------------------------------------------------------------------------------- /example/w-fullstack-jsoo/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/w-fullstack-jsoo/server/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-fullstack-jsoo/server/dune -------------------------------------------------------------------------------- /example/w-fullstack-jsoo/server/server.eml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-fullstack-jsoo/server/server.eml.ml -------------------------------------------------------------------------------- /example/w-fullstack-jsoo/w-fullstack-jsoo.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-fullstack-jsoo/w-fullstack-jsoo.opam -------------------------------------------------------------------------------- /example/w-fullstack-rescript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-fullstack-rescript/.gitignore -------------------------------------------------------------------------------- /example/w-fullstack-rescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-fullstack-rescript/README.md -------------------------------------------------------------------------------- /example/w-fullstack-rescript/bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-fullstack-rescript/bsconfig.json -------------------------------------------------------------------------------- /example/w-fullstack-rescript/client/client.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-fullstack-rescript/client/client.res -------------------------------------------------------------------------------- /example/w-fullstack-rescript/common/common.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-fullstack-rescript/common/common.ml -------------------------------------------------------------------------------- /example/w-fullstack-rescript/common/dune: -------------------------------------------------------------------------------- 1 | (library 2 | (name common)) 3 | -------------------------------------------------------------------------------- /example/w-fullstack-rescript/dune: -------------------------------------------------------------------------------- 1 | (data_only_dirs _esy esy.lock lib node_modules) 2 | -------------------------------------------------------------------------------- /example/w-fullstack-rescript/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/w-fullstack-rescript/esy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-fullstack-rescript/esy.json -------------------------------------------------------------------------------- /example/w-fullstack-rescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-fullstack-rescript/package.json -------------------------------------------------------------------------------- /example/w-fullstack-rescript/server/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-fullstack-rescript/server/dune -------------------------------------------------------------------------------- /example/w-fullstack-rescript/server/server.eml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-fullstack-rescript/server/server.eml.ml -------------------------------------------------------------------------------- /example/w-graphql-subscription/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-graphql-subscription/README.md -------------------------------------------------------------------------------- /example/w-graphql-subscription/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-graphql-subscription/dune -------------------------------------------------------------------------------- /example/w-graphql-subscription/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/w-graphql-subscription/graphql_subscription.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-graphql-subscription/graphql_subscription.ml -------------------------------------------------------------------------------- /example/w-graphql-subscription/w-graphql-subscription.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-graphql-subscription/w-graphql-subscription.opam -------------------------------------------------------------------------------- /example/w-live-reload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-live-reload/README.md -------------------------------------------------------------------------------- /example/w-live-reload/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-live-reload/dune -------------------------------------------------------------------------------- /example/w-live-reload/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/w-live-reload/live_reload.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-live-reload/live_reload.ml -------------------------------------------------------------------------------- /example/w-live-reload/w-live-reload.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-live-reload/w-live-reload.opam -------------------------------------------------------------------------------- /example/w-long-polling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-long-polling/README.md -------------------------------------------------------------------------------- /example/w-long-polling/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-long-polling/dune -------------------------------------------------------------------------------- /example/w-long-polling/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/w-long-polling/long_polling.eml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-long-polling/long_polling.eml.ml -------------------------------------------------------------------------------- /example/w-long-polling/w-long-polling.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-long-polling/w-long-polling.opam -------------------------------------------------------------------------------- /example/w-mirage-letsencrypt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-mirage-letsencrypt/README.md -------------------------------------------------------------------------------- /example/w-mirage-letsencrypt/_tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-mirage-letsencrypt/_tags -------------------------------------------------------------------------------- /example/w-mirage-letsencrypt/config.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-mirage-letsencrypt/config.ml -------------------------------------------------------------------------------- /example/w-mirage-letsencrypt/unikernel.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-mirage-letsencrypt/unikernel.ml -------------------------------------------------------------------------------- /example/w-mirage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-mirage/README.md -------------------------------------------------------------------------------- /example/w-mirage/config.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-mirage/config.ml -------------------------------------------------------------------------------- /example/w-mirage/unikernel.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-mirage/unikernel.ml -------------------------------------------------------------------------------- /example/w-mlx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-mlx/README.md -------------------------------------------------------------------------------- /example/w-mlx/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-mlx/dune -------------------------------------------------------------------------------- /example/w-mlx/dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-mlx/dune-project -------------------------------------------------------------------------------- /example/w-mlx/dune-workspace: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/w-mlx/mlx.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-mlx/mlx.mlx -------------------------------------------------------------------------------- /example/w-mlx/w-mlx.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-mlx/w-mlx.opam -------------------------------------------------------------------------------- /example/w-multipart-dump/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-multipart-dump/README.md -------------------------------------------------------------------------------- /example/w-multipart-dump/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-multipart-dump/dune -------------------------------------------------------------------------------- /example/w-multipart-dump/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/w-multipart-dump/multipart_dump.eml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-multipart-dump/multipart_dump.eml.ml -------------------------------------------------------------------------------- /example/w-multipart-dump/w-multipart-dump.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-multipart-dump/w-multipart-dump.opam -------------------------------------------------------------------------------- /example/w-nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-nginx/Dockerfile -------------------------------------------------------------------------------- /example/w-nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-nginx/README.md -------------------------------------------------------------------------------- /example/w-nginx/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-nginx/assets/README.md -------------------------------------------------------------------------------- /example/w-nginx/assets/camel.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-nginx/assets/camel.jpeg -------------------------------------------------------------------------------- /example/w-nginx/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-nginx/docker-compose.yml -------------------------------------------------------------------------------- /example/w-nginx/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-nginx/dune -------------------------------------------------------------------------------- /example/w-nginx/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/w-nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-nginx/nginx.conf -------------------------------------------------------------------------------- /example/w-nginx/server.eml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-nginx/server.eml.ml -------------------------------------------------------------------------------- /example/w-nginx/w-nginx.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-nginx/w-nginx.opam -------------------------------------------------------------------------------- /example/w-one-binary/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | _esy 3 | -------------------------------------------------------------------------------- /example/w-one-binary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-one-binary/README.md -------------------------------------------------------------------------------- /example/w-one-binary/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-one-binary/assets/README.md -------------------------------------------------------------------------------- /example/w-one-binary/assets/camel.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-one-binary/assets/camel.jpeg -------------------------------------------------------------------------------- /example/w-one-binary/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-one-binary/dune -------------------------------------------------------------------------------- /example/w-one-binary/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/w-one-binary/one_binary.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-one-binary/one_binary.ml -------------------------------------------------------------------------------- /example/w-one-binary/w-one-binary.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-one-binary/w-one-binary.opam -------------------------------------------------------------------------------- /example/w-postgres/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-postgres/.dockerignore -------------------------------------------------------------------------------- /example/w-postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-postgres/Dockerfile -------------------------------------------------------------------------------- /example/w-postgres/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-postgres/README.md -------------------------------------------------------------------------------- /example/w-postgres/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-postgres/docker-compose.yml -------------------------------------------------------------------------------- /example/w-postgres/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-postgres/dune -------------------------------------------------------------------------------- /example/w-postgres/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/w-postgres/postgres.eml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-postgres/postgres.eml.ml -------------------------------------------------------------------------------- /example/w-postgres/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-postgres/schema.sql -------------------------------------------------------------------------------- /example/w-postgres/w-postgres.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-postgres/w-postgres.opam -------------------------------------------------------------------------------- /example/w-query/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-query/README.md -------------------------------------------------------------------------------- /example/w-query/dune: -------------------------------------------------------------------------------- 1 | (executable 2 | (name query) 3 | (libraries dream)) 4 | -------------------------------------------------------------------------------- /example/w-query/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/w-query/query.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-query/query.ml -------------------------------------------------------------------------------- /example/w-query/w-query.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-query/w-query.opam -------------------------------------------------------------------------------- /example/w-server-sent-events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-server-sent-events/README.md -------------------------------------------------------------------------------- /example/w-server-sent-events/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-server-sent-events/dune -------------------------------------------------------------------------------- /example/w-server-sent-events/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/w-server-sent-events/server_sent_events.eml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-server-sent-events/server_sent_events.eml.ml -------------------------------------------------------------------------------- /example/w-server-sent-events/w-server-sent-events.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-server-sent-events/w-server-sent-events.opam -------------------------------------------------------------------------------- /example/w-stress-response/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-stress-response/README.md -------------------------------------------------------------------------------- /example/w-stress-response/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-stress-response/dune -------------------------------------------------------------------------------- /example/w-stress-response/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/w-stress-response/stress_response.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-stress-response/stress_response.ml -------------------------------------------------------------------------------- /example/w-stress-response/w-stress-response.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-stress-response/w-stress-response.opam -------------------------------------------------------------------------------- /example/w-stress-websocket-send/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-stress-websocket-send/README.md -------------------------------------------------------------------------------- /example/w-stress-websocket-send/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-stress-websocket-send/dune -------------------------------------------------------------------------------- /example/w-stress-websocket-send/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/w-stress-websocket-send/stress_websocket_send.eml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-stress-websocket-send/stress_websocket_send.eml.ml -------------------------------------------------------------------------------- /example/w-stress-websocket-send/w-stress-websocket.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-stress-websocket-send/w-stress-websocket.opam -------------------------------------------------------------------------------- /example/w-template-files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-template-files/README.md -------------------------------------------------------------------------------- /example/w-template-files/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-template-files/dune -------------------------------------------------------------------------------- /example/w-template-files/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/w-template-files/server.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-template-files/server.ml -------------------------------------------------------------------------------- /example/w-template-files/template.eml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-template-files/template.eml.html -------------------------------------------------------------------------------- /example/w-template-files/w-template-files.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-template-files/w-template-files.opam -------------------------------------------------------------------------------- /example/w-template-logic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-template-logic/README.md -------------------------------------------------------------------------------- /example/w-template-logic/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-template-logic/dune -------------------------------------------------------------------------------- /example/w-template-logic/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/w-template-logic/template.eml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-template-logic/template.eml.ml -------------------------------------------------------------------------------- /example/w-template-logic/w-template-logic.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-template-logic/w-template-logic.opam -------------------------------------------------------------------------------- /example/w-template-stream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-template-stream/README.md -------------------------------------------------------------------------------- /example/w-template-stream/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-template-stream/dune -------------------------------------------------------------------------------- /example/w-template-stream/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/w-template-stream/template_stream.eml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-template-stream/template_stream.eml.ml -------------------------------------------------------------------------------- /example/w-template-stream/w-template-stream.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-template-stream/w-template-stream.opam -------------------------------------------------------------------------------- /example/w-tyxml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-tyxml/README.md -------------------------------------------------------------------------------- /example/w-tyxml/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-tyxml/dune -------------------------------------------------------------------------------- /example/w-tyxml/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/w-tyxml/tyxml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-tyxml/tyxml.ml -------------------------------------------------------------------------------- /example/w-tyxml/w-tyxml.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-tyxml/w-tyxml.opam -------------------------------------------------------------------------------- /example/w-upload-stream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-upload-stream/README.md -------------------------------------------------------------------------------- /example/w-upload-stream/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-upload-stream/dune -------------------------------------------------------------------------------- /example/w-upload-stream/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/w-upload-stream/upload_stream.eml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-upload-stream/upload_stream.eml.ml -------------------------------------------------------------------------------- /example/w-upload-stream/w-upload-stream.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-upload-stream/w-upload-stream.opam -------------------------------------------------------------------------------- /example/w-watch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-watch/README.md -------------------------------------------------------------------------------- /example/w-watch/dune: -------------------------------------------------------------------------------- 1 | (executable 2 | (name hello) 3 | (libraries dream)) 4 | -------------------------------------------------------------------------------- /example/w-watch/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/w-watch/hello.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-watch/hello.ml -------------------------------------------------------------------------------- /example/w-watch/w-watch.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/w-watch/w-watch.opam -------------------------------------------------------------------------------- /example/z-docker-esy/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-docker-esy/.dockerignore -------------------------------------------------------------------------------- /example/z-docker-esy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-docker-esy/Dockerfile -------------------------------------------------------------------------------- /example/z-docker-esy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-docker-esy/README.md -------------------------------------------------------------------------------- /example/z-docker-esy/app.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-docker-esy/app.ml -------------------------------------------------------------------------------- /example/z-docker-esy/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-docker-esy/deploy.sh -------------------------------------------------------------------------------- /example/z-docker-esy/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-docker-esy/docker-compose.yml -------------------------------------------------------------------------------- /example/z-docker-esy/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-docker-esy/dune -------------------------------------------------------------------------------- /example/z-docker-esy/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/z-docker-esy/esy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-docker-esy/esy.json -------------------------------------------------------------------------------- /example/z-docker-opam/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-docker-opam/.dockerignore -------------------------------------------------------------------------------- /example/z-docker-opam/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-docker-opam/Dockerfile -------------------------------------------------------------------------------- /example/z-docker-opam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-docker-opam/README.md -------------------------------------------------------------------------------- /example/z-docker-opam/app.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-docker-opam/app.ml -------------------------------------------------------------------------------- /example/z-docker-opam/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-docker-opam/deploy.sh -------------------------------------------------------------------------------- /example/z-docker-opam/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-docker-opam/docker-compose.yml -------------------------------------------------------------------------------- /example/z-docker-opam/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-docker-opam/dune -------------------------------------------------------------------------------- /example/z-docker-opam/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/z-docker-opam/z-docker-opam.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-docker-opam/z-docker-opam.opam -------------------------------------------------------------------------------- /example/z-fly/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-fly/.dockerignore -------------------------------------------------------------------------------- /example/z-fly/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | _esy -------------------------------------------------------------------------------- /example/z-fly/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-fly/Dockerfile -------------------------------------------------------------------------------- /example/z-fly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-fly/README.md -------------------------------------------------------------------------------- /example/z-fly/app.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-fly/app.ml -------------------------------------------------------------------------------- /example/z-fly/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-fly/docker-compose.yml -------------------------------------------------------------------------------- /example/z-fly/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-fly/dune -------------------------------------------------------------------------------- /example/z-fly/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/z-fly/esy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-fly/esy.json -------------------------------------------------------------------------------- /example/z-heroku/.gitignore: -------------------------------------------------------------------------------- 1 | deploy/ 2 | -------------------------------------------------------------------------------- /example/z-heroku/.slugignore: -------------------------------------------------------------------------------- 1 | _build/ 2 | _esy/ 3 | node_modules/ 4 | esy.lock/ 5 | -------------------------------------------------------------------------------- /example/z-heroku/Procfile: -------------------------------------------------------------------------------- 1 | web: deploy/app.exe 2 | -------------------------------------------------------------------------------- /example/z-heroku/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-heroku/README.md -------------------------------------------------------------------------------- /example/z-heroku/app.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-heroku/app.ml -------------------------------------------------------------------------------- /example/z-heroku/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-heroku/dune -------------------------------------------------------------------------------- /example/z-heroku/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/z-heroku/esy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-heroku/esy.json -------------------------------------------------------------------------------- /example/z-playground/.gitignore: -------------------------------------------------------------------------------- 1 | !package-lock.json 2 | -------------------------------------------------------------------------------- /example/z-playground/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-playground/README.md -------------------------------------------------------------------------------- /example/z-playground/client/client.eml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-playground/client/client.eml.html -------------------------------------------------------------------------------- /example/z-playground/client/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-playground/client/dune -------------------------------------------------------------------------------- /example/z-playground/client/playground.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-playground/client/playground.css -------------------------------------------------------------------------------- /example/z-playground/client/playground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-playground/client/playground.js -------------------------------------------------------------------------------- /example/z-playground/dune: -------------------------------------------------------------------------------- 1 | (data_only_dirs _esy esy.lock lib node_modules) 2 | -------------------------------------------------------------------------------- /example/z-playground/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/z-playground/opam-switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-playground/opam-switch -------------------------------------------------------------------------------- /example/z-playground/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-playground/package-lock.json -------------------------------------------------------------------------------- /example/z-playground/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-playground/package.json -------------------------------------------------------------------------------- /example/z-playground/runtime/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-playground/runtime/dune -------------------------------------------------------------------------------- /example/z-playground/runtime/examples.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-playground/runtime/examples.ml -------------------------------------------------------------------------------- /example/z-playground/runtime/playground.eml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-playground/runtime/playground.eml.ml -------------------------------------------------------------------------------- /example/z-playground/runtime/runtime.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-playground/runtime/runtime.opam -------------------------------------------------------------------------------- /example/z-playground/sandbox/ocaml/keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/z-playground/sandbox/ocaml/server.eml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-playground/sandbox/ocaml/server.eml.ml -------------------------------------------------------------------------------- /example/z-playground/sandbox/reason/keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/z-playground/sandbox/reason/server.eml.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-playground/sandbox/reason/server.eml.re -------------------------------------------------------------------------------- /example/z-playground/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-playground/server/build.sh -------------------------------------------------------------------------------- /example/z-playground/server/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-playground/server/deploy.sh -------------------------------------------------------------------------------- /example/z-playground/server/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-playground/server/dune -------------------------------------------------------------------------------- /example/z-playground/server/playground.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-playground/server/playground.ml -------------------------------------------------------------------------------- /example/z-playground/server/playground.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-playground/server/playground.service -------------------------------------------------------------------------------- /example/z-playground/server/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-playground/server/setup.sh -------------------------------------------------------------------------------- /example/z-playground/server/sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-playground/server/sync.sh -------------------------------------------------------------------------------- /example/z-playground/z-playground.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-playground/z-playground.opam -------------------------------------------------------------------------------- /example/z-systemd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-systemd/README.md -------------------------------------------------------------------------------- /example/z-systemd/app.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-systemd/app.ml -------------------------------------------------------------------------------- /example/z-systemd/app.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-systemd/app.service -------------------------------------------------------------------------------- /example/z-systemd/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-systemd/build.sh -------------------------------------------------------------------------------- /example/z-systemd/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-systemd/deploy.sh -------------------------------------------------------------------------------- /example/z-systemd/dune: -------------------------------------------------------------------------------- 1 | (executable 2 | (name app) 3 | (libraries dream)) 4 | -------------------------------------------------------------------------------- /example/z-systemd/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.0) 2 | -------------------------------------------------------------------------------- /example/z-systemd/z-systemd.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/example/z-systemd/z-systemd.opam -------------------------------------------------------------------------------- /src/certificate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/certificate/README.md -------------------------------------------------------------------------------- /src/certificate/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/certificate/dune -------------------------------------------------------------------------------- /src/certificate/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/certificate/generate.sh -------------------------------------------------------------------------------- /src/certificate/localhost.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/certificate/localhost.cnf -------------------------------------------------------------------------------- /src/certificate/localhost.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/certificate/localhost.crt -------------------------------------------------------------------------------- /src/certificate/localhost.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/certificate/localhost.key -------------------------------------------------------------------------------- /src/cipher/cipher.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/cipher/cipher.ml -------------------------------------------------------------------------------- /src/cipher/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/cipher/dune -------------------------------------------------------------------------------- /src/cipher/random.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/cipher/random.ml -------------------------------------------------------------------------------- /src/dream.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/dream.ml -------------------------------------------------------------------------------- /src/dream.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/dream.mli -------------------------------------------------------------------------------- /src/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/dune -------------------------------------------------------------------------------- /src/eml/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/eml/dune -------------------------------------------------------------------------------- /src/eml/eml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/eml/eml.ml -------------------------------------------------------------------------------- /src/eml/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/eml/main.ml -------------------------------------------------------------------------------- /src/graphiql/.gitattributes: -------------------------------------------------------------------------------- 1 | index.bundle.html linguist-generated 2 | -------------------------------------------------------------------------------- /src/graphiql/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /src/graphiql/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/graphiql/Makefile -------------------------------------------------------------------------------- /src/graphiql/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/graphiql/dune -------------------------------------------------------------------------------- /src/graphiql/index.bundle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/graphiql/index.bundle.html -------------------------------------------------------------------------------- /src/graphiql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/graphiql/index.html -------------------------------------------------------------------------------- /src/graphiql/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/graphiql/package-lock.json -------------------------------------------------------------------------------- /src/graphiql/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/graphiql/package.json -------------------------------------------------------------------------------- /src/graphql/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/graphql/dune -------------------------------------------------------------------------------- /src/graphql/graphql.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/graphql/graphql.ml -------------------------------------------------------------------------------- /src/http/adapt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/http/adapt.ml -------------------------------------------------------------------------------- /src/http/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/http/dune -------------------------------------------------------------------------------- /src/http/error_handler.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/http/error_handler.ml -------------------------------------------------------------------------------- /src/http/error_handler.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/http/error_handler.mli -------------------------------------------------------------------------------- /src/http/http.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/http/http.ml -------------------------------------------------------------------------------- /src/http/shared/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/http/shared/dune -------------------------------------------------------------------------------- /src/http/shared/websocket.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/http/shared/websocket.ml -------------------------------------------------------------------------------- /src/mirage/adapt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/mirage/adapt.ml -------------------------------------------------------------------------------- /src/mirage/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/mirage/dune -------------------------------------------------------------------------------- /src/mirage/error_handler.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/mirage/error_handler.ml -------------------------------------------------------------------------------- /src/mirage/mirage.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/mirage/mirage.ml -------------------------------------------------------------------------------- /src/mirage/mirage.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/mirage/mirage.mli -------------------------------------------------------------------------------- /src/pure/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/pure/dune -------------------------------------------------------------------------------- /src/pure/formats.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/pure/formats.ml -------------------------------------------------------------------------------- /src/pure/formats.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/pure/formats.mli -------------------------------------------------------------------------------- /src/pure/message.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/pure/message.ml -------------------------------------------------------------------------------- /src/pure/message.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/pure/message.mli -------------------------------------------------------------------------------- /src/pure/method.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/pure/method.ml -------------------------------------------------------------------------------- /src/pure/status.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/pure/status.ml -------------------------------------------------------------------------------- /src/pure/stream.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/pure/stream.ml -------------------------------------------------------------------------------- /src/pure/stream.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/pure/stream.mli -------------------------------------------------------------------------------- /src/server/catch.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/server/catch.ml -------------------------------------------------------------------------------- /src/server/cookie.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/server/cookie.ml -------------------------------------------------------------------------------- /src/server/csrf.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/server/csrf.ml -------------------------------------------------------------------------------- /src/server/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/server/dune -------------------------------------------------------------------------------- /src/server/echo.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/server/echo.ml -------------------------------------------------------------------------------- /src/server/error_template.eml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/server/error_template.eml.ml -------------------------------------------------------------------------------- /src/server/flash.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/server/flash.ml -------------------------------------------------------------------------------- /src/server/form.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/server/form.ml -------------------------------------------------------------------------------- /src/server/helpers.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/server/helpers.ml -------------------------------------------------------------------------------- /src/server/livereload.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/server/livereload.ml -------------------------------------------------------------------------------- /src/server/log.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/server/log.ml -------------------------------------------------------------------------------- /src/server/origin_referrer_check.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/server/origin_referrer_check.ml -------------------------------------------------------------------------------- /src/server/query.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/server/query.ml -------------------------------------------------------------------------------- /src/server/router.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/server/router.ml -------------------------------------------------------------------------------- /src/server/router.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/server/router.mli -------------------------------------------------------------------------------- /src/server/session.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/server/session.ml -------------------------------------------------------------------------------- /src/server/site_prefix.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/server/site_prefix.ml -------------------------------------------------------------------------------- /src/server/tag.eml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/server/tag.eml.ml -------------------------------------------------------------------------------- /src/server/upload.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/server/upload.ml -------------------------------------------------------------------------------- /src/sql/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/sql/dune -------------------------------------------------------------------------------- /src/sql/session.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/sql/session.ml -------------------------------------------------------------------------------- /src/sql/sql.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/sql/sql.ml -------------------------------------------------------------------------------- /src/unix/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/unix/dune -------------------------------------------------------------------------------- /src/unix/static.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/src/unix/static.ml -------------------------------------------------------------------------------- /test/expect/eml/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/eml/dune -------------------------------------------------------------------------------- /test/expect/eml/tokens.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/eml/tokens.ml -------------------------------------------------------------------------------- /test/expect/pure/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/pure/dune -------------------------------------------------------------------------------- /test/expect/pure/formats/base64/base64.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/pure/formats/base64/base64.ml -------------------------------------------------------------------------------- /test/expect/pure/formats/base64/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/pure/formats/base64/dune -------------------------------------------------------------------------------- /test/expect/pure/formats/cookie/cookie.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/pure/formats/cookie/cookie.ml -------------------------------------------------------------------------------- /test/expect/pure/formats/cookie/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/pure/formats/cookie/dune -------------------------------------------------------------------------------- /test/expect/pure/formats/escape/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/pure/formats/escape/dune -------------------------------------------------------------------------------- /test/expect/pure/formats/escape/escape.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/pure/formats/escape/escape.ml -------------------------------------------------------------------------------- /test/expect/pure/formats/form_urlencoded/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/pure/formats/form_urlencoded/dune -------------------------------------------------------------------------------- /test/expect/pure/formats/form_urlencoded/form_urlencoded.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/pure/formats/form_urlencoded/form_urlencoded.ml -------------------------------------------------------------------------------- /test/expect/pure/formats/path/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/pure/formats/path/dune -------------------------------------------------------------------------------- /test/expect/pure/formats/path/path.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/pure/formats/path/path.ml -------------------------------------------------------------------------------- /test/expect/pure/formats/percent/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/pure/formats/percent/dune -------------------------------------------------------------------------------- /test/expect/pure/formats/percent/percent.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/pure/formats/percent/percent.ml -------------------------------------------------------------------------------- /test/expect/pure/formats/query/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/pure/formats/query/dune -------------------------------------------------------------------------------- /test/expect/pure/formats/query/query.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/pure/formats/query/query.ml -------------------------------------------------------------------------------- /test/expect/pure/formats/target/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/pure/formats/target/dune -------------------------------------------------------------------------------- /test/expect/pure/formats/target/target.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/pure/formats/target/target.ml -------------------------------------------------------------------------------- /test/expect/pure/message/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/pure/message/dune -------------------------------------------------------------------------------- /test/expect/pure/message/message.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/pure/message/message.ml -------------------------------------------------------------------------------- /test/expect/pure/method/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/pure/method/dune -------------------------------------------------------------------------------- /test/expect/pure/method/method.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/pure/method/method.ml -------------------------------------------------------------------------------- /test/expect/pure/status/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/pure/status/dune -------------------------------------------------------------------------------- /test/expect/pure/status/status.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/pure/status/status.ml -------------------------------------------------------------------------------- /test/expect/pure/stream/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/pure/stream/dune -------------------------------------------------------------------------------- /test/expect/pure/stream/stream.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/pure/stream/stream.ml -------------------------------------------------------------------------------- /test/expect/server/cipher/cipher.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/server/cipher/cipher.ml -------------------------------------------------------------------------------- /test/expect/server/cipher/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/server/cipher/dune -------------------------------------------------------------------------------- /test/expect/server/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/server/dune -------------------------------------------------------------------------------- /test/expect/server/initialize.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/server/initialize.ml -------------------------------------------------------------------------------- /test/expect/server/router.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/expect/server/router.ml -------------------------------------------------------------------------------- /test/ocamlformat/.gitignore: -------------------------------------------------------------------------------- 1 | test.actual.ml 2 | -------------------------------------------------------------------------------- /test/ocamlformat/test.expect.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/ocamlformat/test.expect.ml -------------------------------------------------------------------------------- /test/ocamlformat/test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/ocamlformat/test.ml -------------------------------------------------------------------------------- /test/run-examples-esy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/run-examples-esy.sh -------------------------------------------------------------------------------- /test/unit/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/unit/dune -------------------------------------------------------------------------------- /test/unit/headers.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/unit/headers.ml -------------------------------------------------------------------------------- /test/unit/request.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/unit/request.ml -------------------------------------------------------------------------------- /test/unit/unit.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camlworks/dream/HEAD/test/unit/unit.ml --------------------------------------------------------------------------------