aboutsummaryrefslogtreecommitdiff
path: root/docs/tutorial-basics/deploy-your-site.md
diff options
context:
space:
mode:
authorNikita Tchayka <nikitatchayka@gmail.com>2023-09-16 19:02:14 +0100
committerNikita Tchayka <nikitatchayka@gmail.com>2023-09-16 19:02:14 +0100
commitb0c1d8bfba7fc4d85ae37df18a704ce239b65d28 (patch)
tree0a43cb54ccdd72addcf66dac066f5d64e705d457 /docs/tutorial-basics/deploy-your-site.md
parent0619286d9615c6a2b5e0420c193bd2c7ef344cc0 (diff)
downloadneohaskell.github.io-b0c1d8bfba7fc4d85ae37df18a704ce239b65d28.tar.gz
neohaskell.github.io-b0c1d8bfba7fc4d85ae37df18a704ce239b65d28.tar.bz2
neohaskell.github.io-b0c1d8bfba7fc4d85ae37df18a704ce239b65d28.zip
Ready for prod? lol
Diffstat (limited to 'docs/tutorial-basics/deploy-your-site.md')
-rw-r--r--docs/tutorial-basics/deploy-your-site.md31
1 files changed, 0 insertions, 31 deletions
diff --git a/docs/tutorial-basics/deploy-your-site.md b/docs/tutorial-basics/deploy-your-site.md
deleted file mode 100644
index 1c50ee0..0000000
--- a/docs/tutorial-basics/deploy-your-site.md
+++ /dev/null
@@ -1,31 +0,0 @@
----
-sidebar_position: 5
----
-
-# Deploy your site
-
-Docusaurus is a **static-site-generator** (also called **[Jamstack](https://jamstack.org/)**).
-
-It builds your site as simple **static HTML, JavaScript and CSS files**.
-
-## Build your site
-
-Build your site **for production**:
-
-```bash
-npm run build
-```
-
-The static files are generated in the `build` folder.
-
-## Deploy your site
-
-Test your production build locally:
-
-```bash
-npm run serve
-```
-
-The `build` folder is now served at [http://localhost:3000/](http://localhost:3000/).
-
-You can now deploy the `build` folder **almost anywhere** easily, **for free** or very small cost (read the **[Deployment Guide](https://docusaurus.io/docs/deployment)**).