Add deployment scaffolding (Dockerfile, docker-compose, nginx)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
cd5cf7d794
commit
d9951feda2
|
|
@ -0,0 +1,5 @@
|
||||||
|
project_name: MycoFi Earth
|
||||||
|
statuses:
|
||||||
|
- To Do
|
||||||
|
- In Progress
|
||||||
|
- Done
|
||||||
|
|
@ -0,0 +1,18 @@
|
||||||
|
---
|
||||||
|
id: task-001
|
||||||
|
title: Real-time aggregator test - LIVE UPDATE
|
||||||
|
status: Done
|
||||||
|
priority: high
|
||||||
|
created_date: '2025-12-04 04:45'
|
||||||
|
updated_date: '2025-12-08 00:42'
|
||||||
|
assignee:
|
||||||
|
- "@claude"
|
||||||
|
---
|
||||||
|
|
||||||
|
## Description
|
||||||
|
|
||||||
|
Testing real-time task aggregation across multiple projects.
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
Task was automatically moved to Done status via real-time polling!
|
||||||
|
|
@ -0,0 +1,15 @@
|
||||||
|
---
|
||||||
|
id: task-002
|
||||||
|
title: Test interactive task creation
|
||||||
|
status: Done
|
||||||
|
assignee: []
|
||||||
|
created_date: '2025-12-04 05:34'
|
||||||
|
labels: [test, web-ui]
|
||||||
|
priority: medium
|
||||||
|
dependencies: []
|
||||||
|
updated_date: '2025-12-04 05:35'
|
||||||
|
---
|
||||||
|
|
||||||
|
## Description
|
||||||
|
|
||||||
|
This task was created from the web UI to test the drag-and-drop functionality.
|
||||||
|
|
@ -5,7 +5,7 @@ import { Button } from "@/components/ui/button"
|
||||||
import { Input } from "@/components/ui/input"
|
import { Input } from "@/components/ui/input"
|
||||||
import { Sprout } from "lucide-react"
|
import { Sprout } from "lucide-react"
|
||||||
|
|
||||||
const NEWSLETTER_API = "https://newsletter.jeffemmett.com/api/subscribe"
|
const NEWSLETTER_API = "https://newsletter.jeffemmett.com/subscribe"
|
||||||
const LIST_UUID = "47c050ec-78b4-4f1b-b1d4-708664479685" // MycoFi list
|
const LIST_UUID = "47c050ec-78b4-4f1b-b1d4-708664479685" // MycoFi list
|
||||||
|
|
||||||
export function NewsletterSignup() {
|
export function NewsletterSignup() {
|
||||||
|
|
@ -21,7 +21,7 @@ export function NewsletterSignup() {
|
||||||
setStatus("loading")
|
setStatus("loading")
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const response = await fetch(`${NEWSLETTER_API}/subscribe`, {
|
const response = await fetch(`NEWSLETTER_API`, {
|
||||||
method: "POST",
|
method: "POST",
|
||||||
headers: {
|
headers: {
|
||||||
"Content-Type": "application/json",
|
"Content-Type": "application/json",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue