Add in MUI and stepper component #47

Merged
danalambert merged 12 commits from dana/add-react-wizard into main 2021-10-14 11:30:41 +13:00
2 changed files with 5 additions and 0 deletions
Showing only changes of commit 9faf762224 - Show all commits

View file

@ -1,5 +1,9 @@
FROM python:3.8-slim-bullseye
ENV DJANGO_SUPERUSER_USERNAME=admin
ENV DJANGO_SUPERUSER_EMAIL=admin@admin.com
ENV DJANGO_SUPERUSER_PASSWORD=admin
WORKDIR /app
COPY ./requirements.txt /app/requirements.txt

View file

@ -19,6 +19,7 @@ services:
- "8000:8000"
command: bash -c "./manage.py makemigrations;
./manage.py migrate;
./manage.py createsuperuser --noinput;
./manage.py runserver 0.0.0.0:8000"
react-frontend: