summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2021-03-22 16:06:13 +0100
committerJules Laplace <julescarbon@gmail.com>2021-03-22 16:06:13 +0100
commit285bc89a400c2faa7b6c7c327300c7842711935b (patch)
tree5d6d3c6e2f6b844a5cd4ef980c8c3237a806dabe /README.md
parent30265efd64167e9fd6b5a489bd7f8239b496ed35 (diff)
fix proportional sizing
Diffstat (limited to 'README.md')
-rw-r--r--README.md16
1 files changed, 13 insertions, 3 deletions
diff --git a/README.md b/README.md
index dcfa219..9e8cca6 100644
--- a/README.md
+++ b/README.md
@@ -47,9 +47,19 @@ Generate a new migration if you've modified the database:
./cli.py db upgrade head
```
-## Building the site
+Run the frontend demo flask server (port 3000):
```
-npm run build:production
-./cli.py site export --graph swimmer
+yarn demo
+```
+
+To programmatically create pages, modify `cli/commands/site/populate.py`
+
+## Deploying a site
+
+A hypothetical rsync command:
+
+```
+cd data_store/exports/
+rsync -rlptuvz ./last-museum/ lens@garden:swimmer/data_store/exports/last-museum/
```