feature: add api for categories

feature: add initial docker build and compose for development mode
This commit is contained in:
jon brookes 2026-01-15 15:29:42 +00:00
parent 6bf486e52b
commit f980be8e28
14 changed files with 520 additions and 0 deletions

28
.dockerignore Normal file
View file

@ -0,0 +1,28 @@
# Ignore .env files
.env
.env.*
# Ignore node_modules
node_modules/
# Ignore vendor folder
vendor/
# Ignore log files
*.log
# Ignore IDE and editor files
.idea/
.vscode/
# Ignore system files
.DS_Store
Thumbs.db
# Ignore Laravel storage
/storage/*.key
/storage/*.log
/storage/framework/cache/*
/storage/framework/sessions/*
/storage/framework/views/*
/storage/logs/*