Deployment of Takahe instance using Docker
- Create a new
.envbased on the.env.templatefile and fill all the values. - Bring up the containers:
docker compose up -d - Run Django migrations:
docker exec -it web python manage.py migrate - To apply custom styles run:
docker exec -it web python manage.py collectstatic - Create admin user account:
a. Go to
https://<your_domain>/auth/signup/b. Enter your admin email specified inTAKAHE_AUTO_ADMIN_EMAILc. Go to your inbox and activate the account.