From 9cc5a1a9462b43f70a7b27cb291c52515c6f962f Mon Sep 17 00:00:00 2001 From: Amy Date: Tue, 25 Jun 2024 23:19:33 -0700 Subject: [PATCH] add warning about git depth This patch adds a warning to use `--depth=1` if cloning with git, as the repository is 544MiB. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8fd22c5..15ac96d 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,7 @@ cd svelte-rocket npm install ``` +> Note: if you download the Git repository manually, do so with the `--depth=1` option, as previously stored assets in the repository balloon the clone size to over 500MiB. ...then start Rocket server and [Vite](https://vitejs.dev) in two different terminals @@ -72,4 +73,4 @@ v0.1.4: update packages because `cargo run` failed v0.1.3: Added authentication example with private cookies -v0.1.2: Added Bulma CSS styling \ No newline at end of file +v0.1.2: Added Bulma CSS styling