begin next js version

This commit is contained in:
Timothy Pidashev
2024-03-16 22:51:31 -07:00
parent bceec10c3f
commit b87d34410a
101 changed files with 4408 additions and 8082 deletions
-15
View File
@@ -1,15 +0,0 @@
# This Dockerfile is used to deploy a simple single-container Reflex app instance.
FROM python:3.11
# Copy local context to `/app` inside container (see .dockerignore)
WORKDIR /app
COPY . .
# Install app requirements and reflex in the container
RUN pip install -r requirements.txt
# Deploy templates and prepare app
RUN reflex init
# Always apply migrations before starting the backend.
CMD reflex run --env dev