39 lines
869 B
Markdown
39 lines
869 B
Markdown
# FlowTODO
|
|
|
|
I just wanted a more convenient version of [DumbDo](https://dumbware.io/DumbDo) where
|
|
I could have completed tasks grouped by the "done date". That way when I need to talk
|
|
in standup about what I did yesterday I can just look back at a list of bullet points.
|
|
|
|

|
|
|
|
## Self Hosting
|
|
|
|
**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
|
|
|
|
All database drivers supported thanks to Laravel. We don't have skill issues here.
|
|
|
|
```dotenv
|
|
DB_CONNECTION=pgsql|mysql|sqlite
|
|
DB_HOST=[IP]
|
|
DB_PORT=[Port]
|
|
DB_DATABASE=[DB name]
|
|
DB_USERNAME=
|
|
DB_PASSWORD=
|
|
``` |