updated readme, added how to update bindata.go (#139)

This commit is contained in:
kritikapradhan 2021-02-05 15:55:13 -05:00 коммит произвёл GitHub
Родитель 79b5796aa5
Коммит bebeccbb7e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -77,6 +77,16 @@ docker run --rm -it -p 8080:8080 -v ~/.kube/:/kube/ -e KUBECONFIG=/kube/config s
In this mode, data is written to a memory-backed volume and is discarded after each run. To preserve the data, you can host-mount /data with something like `-v /data/:/some_path_on_host/` In this mode, data is written to a memory-backed volume and is discarded after each run. To preserve the data, you can host-mount /data with something like `-v /data/:/some_path_on_host/`
### Updating webfiles folder
To reflect any changes to webserver/webfiles, run the following command on terminal while within the webserver directory before submitting a pr:
```shell script
go-bindata -o bindata.go webfiles/
```
This will update the bindata folder with your changes to any html, css or javascript files within the directory.
### Local Docker Run and connecting to EKS ### Local Docker Run and connecting to EKS
This is very similar to above but abstracts running docker with AWS credentials for connecting to EKS This is very similar to above but abstracts running docker with AWS credentials for connecting to EKS