# Quick install guide [Deployment preparation steps](deployment-preparation.md): ```properties git pull git tag v1.0.0 v1.1.0 git checkout tags/ make aura-user.add make aura-web.init ``` If needed, modify the newly created configuration file and then initialize the database: ```properties 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: ```properties make aura-web.fixtures-create nano config/aura-web/fixtures/... make aura-web.fixtures-import ``` After this is set, start AURA Web with: ```properties make aura-web.up ``` Watch the health status and logs with: ```properties docker ps cd config/aura-web && docker compose logs -f ``` For additional maintenance options, see [Update and Maintenance](update-and-maintain.md).