Compare commits

...

8 Commits
v0.1.0 ... main

Author SHA1 Message Date
4097f2f67c Update readme 2025-07-16 20:04:58 -04:00
bf12ab9036 Update readme 2025-07-16 20:02:46 -04:00
5b0edeff40 Specify composer version on build action 2025-07-16 19:49:00 -04:00
8040095e66 No test on main 2025-07-16 19:46:58 -04:00
d3443546a8 Do not run tests or linter on main
Some checks failed
tests / ci (push) Has been cancelled
Build & Push Docker Image to Registry / build (release) Successful in 4m25s
2025-07-16 19:45:25 -04:00
d3e6999a6c Update build action with composer and npm installs
Some checks failed
tests / ci (push) Has been cancelled
linter / quality (push) Has been cancelled
2025-07-16 19:44:26 -04:00
63de1cc642 Fix dockerfile
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
2025-07-16 19:33:47 -04:00
74a4e27ef5 Try to fix build action
Some checks failed
linter / quality (push) Successful in 4m12s
tests / ci (push) Has been cancelled
2025-07-16 19:15:50 -04:00
5 changed files with 38 additions and 6 deletions

View File

@ -12,6 +12,25 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: '24'
- name: Set up PHP with Composer
uses: shivammathur/setup-php@v2
with:
php-version: '8.4'
tools: composer:v2
- name: Install PHP dependencies
run: composer install --no-interaction --prefer-dist --optimize-autoloader
- name: Install JS dependencies and build assets
run: |
npm ci
npm run build
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
@ -25,8 +44,8 @@ jobs:
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
context: ${{ github.workspace }}
file: ${{ github.workspace }}/Dockerfile
push: true
tags: |
gitgud.foo/thegrind/flowtodo:latest

View File

@ -4,11 +4,9 @@ on:
push:
branches:
- develop
- main
pull_request:
branches:
- develop
- main
permissions:
contents: write

View File

@ -4,11 +4,9 @@ on:
push:
branches:
- develop
- main
pull_request:
branches:
- develop
- main
jobs:
ci:

View File

@ -21,3 +21,7 @@ rebuild:
docker-publish:
docker image tag flowtodo:latest gitgud.foo/thegrind/flowtodo:$(VERSION)
docker push gitgud.foo/thegrind/flowtodo:$(VERSION)
test-remote-image:
docker pull gitgud.foo/thegrind/flowtodo:latest
docker run --rm -p 8889:8000 gitgud.foo/thegrind/flowtodo:latest

View File

@ -10,6 +10,19 @@ in standup about what I did yesterday I can just look back at a list of bullet p
**Docker image coming soon**
### Docker compose
```yaml
services:
flowtodo:
container_name: flowtodo
image: gitgud.foo/thegrind/flowtodo:latest
environment:
- OCTANE_HTTPS=true # If you're serving through a reverse proxy
ports:
- '8889:8000'
```
### Configuration
#### Database