You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+124Lines changed: 124 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -99,6 +99,130 @@ yarn start
99
99
100
100
## Deployment
101
101
102
+
There are three deployment methods available locally and in Github Actions. You can always easily identify currently deployed version by checking **the latest commit info in the footer** of the deployed website.
103
+
104
+
For Github Actions workflows you will need to set these secrets in your Github repository settings:
105
+
106
+
```bash
107
+
# Dockerhub user and pass
108
+
DOCKER_PASSWORD
109
+
DOCKER_USERNAME
110
+
111
+
# remote server ssh credentials
112
+
REMOTE_HOST
113
+
REMOTE_KEY_ED25519
114
+
REMOTE_PORT
115
+
REMOTE_USERNAME
116
+
```
117
+
118
+
### 1. Nginx
119
+
120
+
All Nginx deployments come down to building the website and copying the compiled files from the `/dist` folder into the Nginx web root folder on a remote server.
0 commit comments