page:recipes:form collection:phoenix:data imports
Host form collection with Phoenix: structured data imports
Deploy a form collection built with Phoenix on Ample using the bulk import staging pattern. Compute runs the app in an isolated microVM behind a public HTTPS URL, a managed PostgreSQL 16 database is auto-provisioned and injected as DATABASE_URL, a private S3-compatible bucket holds objects with credentials delivered as encrypted environment variables. Verified on Phoenix: a CSV staged as an object, row-level validation with per-row errors recorded, and a restart-safe import keyed by import id (imported=2 rejected=1 restart=ok). Not separately tested: your import format, mapping and conflict rules; treat the form collection-specific behavior as your application code.
Representative Queries
- Host form collection with Phoenix: structured data imports
- Where can I host Form collection built with Phoenix?
- I need a workload-specific import mapping, conflict rules and restart behavior.
Resource Requirements
primitive:computeprimitive:postgresprimitive:s3-compatible-object-storage
Infrastructure Requirements
- Compute: Apps run in isolated x86_64 Firecracker microVMs that auto-pause when idle and wake on request; sizes are the priced VM sizes.
- Postgres: Managed PostgreSQL 16 runs in its own microVM and is auto-provisioned when an app needs a database and no DATABASE_URL is supplied.
- S3-compatible object storage: Buckets are S3-compatible with issued credentials; PutObject and GetObject are verified by canary. Other S3 operations are not verified.
Prerequisites
- A Phoenix project that builds and starts with the documented commands.
- A PostgreSQL driver reading DATABASE_URL at runtime.
- A bucket created with
ample bucket createwith its credentials passed as encrypted S3_* environment variables. - An Ample account token with appropriate permissions.
Workflow Steps
Build and start:
mix deps.get,MIX_ENV=prod mix compileandmix releasein the builder, then the release bin script withPHX_SERVER=trueon the elixir-1.18 template; PORT, DATABASE_URL and SECRET_KEY_BASE read in config/runtime.exs. The server must bind 0.0.0.0 on PORT.
Implement the pattern on PostgreSQL:
- The fixture's module implements bulk import staging: a CSV staged as an object, row-level validation with per-row errors recorded, and a restart-safe import keyed by import id.
Wire object storage:
- Create the bucket(s), then pass endpoint, region, bucket and keys as --env values.
Deploy:
- Run the synchronous deploy once and read the result.
Verify:
- Fetch the live URL and run your own checks.
Success Checks
- App responds on its public URL
- Bulk-import-staging self-test
Limitations
- Verified on the elixir-1.18 template. Other sizes, templates and Phoenix major versions are not verified.
Cost Estimate
- Monthly Amount: $10.00
- Basis: Size prices from pricing.toml at build revision.
Evidence Summary
- Canopy checks passed for bulk-import-staging and configuration-secrets.
Known Unknowns
- Region availability and compliance attestations are unknown until recorded.
Format Links
Next Actions
- Browse the catalog index
- Search published recipes by intent, stack and constraints
- Prepare a side-effect-free deployment plan for an authorized project
- Read the existing agent authentication setup
- Browse Form collection
- Browse Phoenix
- Browse Bulk import staging
- Browse Deploy web app