build: Fix hot reloading of UI, improve docs

pull/722/head
Felix Pojtinger 2019-04-27 03:39:06 +02:00
parent c0ab071f78
commit 8fbef6a541
3 changed files with 12 additions and 10 deletions

View File

@ -83,19 +83,21 @@ skaffold run -p lemmy--prod
#### Kubernetes #### Kubernetes
This requires: ##### Requirements
- Local or remote Kubernetes Cluster, i.e. [`minikube`](https://kubernetes.io/docs/tasks/tools/install-minikube/) - Local or remote Kubernetes cluster, i.e. [`minikube`](https://kubernetes.io/docs/tasks/tools/install-minikube/)
- [`kubectl`](https://kubernetes.io/docs/tasks/tools/install-kubectl/) - [`kubectl`](https://kubernetes.io/docs/tasks/tools/install-kubectl/)
- [`skaffold`](https://skaffold.dev/) - [`skaffold`](https://skaffold.dev/)
After satisfying the requirements, run the following: ##### Running
```bash ```bash
skaffold dev -p lemmy--dev skaffold dev -p lemmy--dev
``` ```
And goto http://localhost:4444. And goto http://localhost:4444 (automatically proxies to localhost, both if the cluster is local or remote).
It hot-reloads the UI and automatically recompiles the server.
#### Non-Kubernetes #### Non-Kubernetes

View File

@ -93,8 +93,8 @@ spec:
name: lemmy-server--dev name: lemmy-server--dev
resources: resources:
limits: limits:
memory: 256Mi memory: 512Mi
cpu: 256m cpu: 512m
ports: ports:
- containerPort: 8536 - containerPort: 8536
--- ---

View File

@ -9,15 +9,15 @@ profiles:
docker: docker:
dockerfile: Dockerfile.dev dockerfile: Dockerfile.dev
sync: sync:
"**/*.rs": src/ "***/*.rs": .
- image: registry.gitlab.com/pojntfx/lemmy/ui.dev - image: registry.gitlab.com/pojntfx/lemmy/ui.dev
context: ui context: ui
docker: docker:
dockerfile: Dockerfile.dev dockerfile: Dockerfile.dev
sync: sync:
"**/*.ts": src/ "***/*.ts": .
"**/*.tsx": src/ "***/*.tsx": .
"**/*.css": src/ "***/*.css": .
deploy: deploy:
kubectl: kubectl:
manifests: manifests: