diff --git a/README.md b/README.md index 927be262..5b03bd2d 100644 --- a/README.md +++ b/README.md @@ -230,13 +230,6 @@ Highlight `@antron` to poke @aantron specifically. All kinds of contributions are welcome, including examples, links to blogs, related libraries, and, of course, PRs! See [CONTRIBUTING.md][contributing.md]. -As an immediate note, if you'd like to clone the repo, be sure to use -`--recursive`, because Dream uses several git [submodules][vendor]: - -``` -git clone https://github.com/aantron/dream.git --recursive -``` - [contributing.md]: https://github.com/aantron/dream/blob/master/docs/CONTRIBUTING.md
@@ -251,10 +244,10 @@ several influences that cannot be discovered directly: and [**Embedded OCaml Templates**][eot] from [Emile Trotignon][trotignon]. - Dream's handler and middleware types are simplified from [**Opium**][opium] by [Rudi Grinberg][rgrinberg] and contributors. -- The lower-level HTTP and WebSocket servers are [vendored][vendor] copies of +- The lower-level HTTP and WebSocket servers use [Antonio Nuno Monteiro][anmonteiro]'s forks and original works, with credit also due to their contributors, and [Spiros Eliopoulos][seliopou] in - particular, as the original author of two of the projects. + particular, as the original author of the http/af family of projects. - The API docs are instantiated by [**Soupault**][soupault] from [Daniil Baturin][dmbaturin]. - The name was inspired by [**Morph**][morph] from [Ulrik Strid][ulrikstrid], diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index 530e8e77..a9da89ae 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -35,14 +35,10 @@ npx esy ls-builds If you'd like to contribute code, clone the repository with ``` -git clone https://github.com/aantron/dream.git --recursive +git clone https://github.com/aantron/dream.git cd dream ``` -Note: the clone *must* be `--recursive`, because Dream several dependencies -vendored as -[submodules](https://github.com/aantron/dream/tree/master/src/vendor). - Later, you'll need to fork the repository on GitHub, and add your fork as a remote: @@ -101,13 +97,6 @@ git push -u fork my-branch GitHub should print a URL into your terminal for opening a pull request. -If you want to work again later, be sure to use `--recurse-submodules` during -`git pull`, similar to `git clone --recursive`: - -``` -git pull --recurse-submodules -``` - **Note:** Please don't force-push into a PR — it makes incremental review very difficult, and we will squash-merge most PRs anyway!