Skip to content

Commit

Permalink
feat: add space education theme DOC-1138 (#22)
Browse files Browse the repository at this point in the history
* docs: add landing page & responsive menu DOC-1138

* docs: add color variables

* docs: add routing and pages

* docs: add rotating facts DOC-1138

* docs: adjust footer content

* docs: add earth to moon chart

* docs: mars starter point

* docs: add mars temperature

* docs: add stats page DOC-1138

* docs: clear interval and fix styling

* docs: add space images

* docs: add visitors bar chart DOC-1138

* docs: add server status DOC-1138

* docs: add support for http requests

* docs: add API connection handling DOC-1138

* docs: adjust counter DOC-1138

* docs: change footer with x

* docs: add memo on images and bump dependencies

* docs: add image compression script and compress all images

* docs: update the package versionand layout

* docs: update demo

* docs: update demo width
  • Loading branch information
addetz committed Sep 9, 2024
1 parent 2736bce commit c5a9d7d
Show file tree
Hide file tree
Showing 61 changed files with 7,972 additions and 478 deletions.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,8 @@ start-services:

stop-services:
@echo "Stopping services..."
docker compose down
docker compose down

format-images: ## Format images
@echo "formatting images in /src/img/ folder"
./scripts/compress-convert-images.sh
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Hello Universe is a demo application intended for learning about [Palette](https://docs.spectrocloud.com/introduction) and to help showcase product features.

<p align="center">
<img src="./static/img/demo.gif" alt="drawing" width="400"/>
<img src="./static/img/demo.gif" alt="drawing" width="600"/>
</p>

## Start App
Expand Down
4 changes: 2 additions & 2 deletions deployment/k8s.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ spec:
spec:
containers:
- name: postgres
image: ghcr.io/spectrocloud/hello-universe-db:1.0.2
image: ghcr.io/spectrocloud/hello-universe-db:1.1.0
ports:
- containerPort: 5432
name: postgres
Expand Down Expand Up @@ -132,7 +132,7 @@ spec:
serviceAccountName: hello-universe-role
containers:
- name: api
image: ghcr.io/spectrocloud/hello-universe-api:1.0.12
image: ghcr.io/spectrocloud/hello-universe-api:1.1.0
ports:
- containerPort: 3000
name: api
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ networks:

services:
db:
image: ghcr.io/spectrocloud/hello-universe-db:1.0.2
image: ghcr.io/spectrocloud/hello-universe-db:1.1.0
ports:
- "5432:5432"
expose:
Expand Down Expand Up @@ -34,7 +34,7 @@ services:
depends_on:
db:
condition: service_healthy
image: ghcr.io/spectrocloud/hello-universe-api:1.0.12
image: ghcr.io/spectrocloud/hello-universe-api:1.1.0
environment:
PORT: 3000
DB_HOST: db
Expand Down
Loading

0 comments on commit c5a9d7d

Please sign in to comment.