admin / Strike
publicWeb-Based UK Cyber Compliance Tool with Reporting
Strike / strikexi-v2 / .env.example
714 B · main
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # Copy to .env and edit before first run: cp .env.example .env # ---- PostgreSQL ---- POSTGRES_USER=strikexi POSTGRES_PASSWORD=change_me_in_prod POSTGRES_DB=strikexi # ---- Backend / Auth ---- # Generate with: python -c "import secrets;print(secrets.token_urlsafe(48))" SECRET_KEY=please-generate-a-long-random-secret ACCESS_TOKEN_EXPIRE_MINUTES=120 # Default admin user, seeded on first boot. The account is flagged # "must change password", so you are forced to set a real password at first # login. MFA can then be enabled per-user from the UI. ADMIN_USERNAME=admin ADMIN_PASSWORD=Admin!2345 # CORS — where the frontend is served from (V2 frontend is published on 8081) CORS_ORIGINS=http://localhost:8081 |