Quick install guide

Deployment preparation steps:

git pull
git tag
   v1.0.0
   v1.1.0
git checkout tags/<release-version>
make aura-user.add
make aura-web.init

If needed, modify the newly created configuration file and then initialize the database:

nano config/aura-web/.env
make aura-web.configure

Now create fixtures based on samples, edit or delete files. Then import fixtures as the last step:

make aura-web.fixtures-create
nano config/aura-web/fixtures/...
make aura-web.fixtures-import

After this is set, start AURA Web with:

make aura-web.up

Watch the health status and logs with:

docker ps
cd config/aura-web && docker compose logs -f

For additional maintenance options, see Update and Maintenance.