diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..00ad2f4 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,25 @@ +kind: pipeline +name: build-and-deploy +type: docker + +platform: + os: linux + arch: arm64 + + +steps: + - name: docker-build-and-push + image: thegeeklab/drone-docker-buildx # Absurd that this isn't offered as first-party! + privileged: true + settings: + registry: gitea.scubbo.org + username: scubbo + password: + from_secret: gitea_password + repo: gitea.scubbo.org/${DRONE_REPO} + tags: + - ${DRONE_COMMIT_SHA:0:10} + platforms: + - linux/arm64 + - linux/amd64 + # TODO - use kustomize to update the deployed image. \ No newline at end of file diff --git a/app/templates/about.html b/app/templates/about.html index 82b684f..9546f3b 100644 --- a/app/templates/about.html +++ b/app/templates/about.html @@ -21,16 +21,16 @@

(This is only listing user-facing functionality - there are also plenty of technical or QA considerations that I'd - like to add! See the GitHub Repo for more + like to add! See the GitHub Repo for more details)

As you can probably tell, this app is currently in a "pre-alpha" state, with minimal functionality and cosmetic - considerations so as to just get something in front of users. + considerations so as to just get something in front of users.

HUGE thanks to my friend Patrick for getting a jump-start on data-tracking, so that 1. I had some data to work with, and 2. I had inspiration to keep working on this project.

-{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/app/templates/games/create.html b/app/templates/games/create.html index 0e9940a..e6aa1a3 100644 --- a/app/templates/games/create.html +++ b/app/templates/games/create.html @@ -8,6 +8,11 @@ {% endblock %} {% block content %} +

+ PLEASE NOTE that this application is currently in a "pre-alpha" state. You should not depend on it for + durable data persistence. Please use this application only on an experimental basis, and make a backup of your play + data elsewhere separately (for now!). +