25 lines
593 B
Markdown
25 lines
593 B
Markdown
# Calvana
|
|
|
|
Application microsite deployed at [calvana.quikcue.com](https://calvana.quikcue.com).
|
|
|
|
## Structure
|
|
|
|
```
|
|
html/
|
|
manifesto/index.html — /manifesto (main page)
|
|
live/index.html — /live (ship log)
|
|
hire/index.html — /hire (contact)
|
|
css/style.css — shared styles
|
|
404.html — custom 404
|
|
index.html — redirect to /manifesto
|
|
Dockerfile — nginx:alpine container
|
|
nginx.conf — nginx config
|
|
```
|
|
|
|
## Deploy
|
|
|
|
```bash
|
|
docker build -t calvana:latest .
|
|
docker service update --force calvana
|
|
```
|