astralapp / astral

Organize Your GitHub Stars With Ease
https://astralapp.com
BSD 3-Clause "New" or "Revised" License
3.17k stars 141 forks source link

Which environment vars are needed? #371

Closed obvionaoe closed 2 years ago

obvionaoe commented 2 years ago

So, I'm trying to create a Docker image using only php-fpm but I'm not sure what variables are needed for specific cases.

Could you add documentation regarding the environment variables and how they're loaded into the app?

Like for when you use SQLite is DB_PORT also needed?

Thanks

syropian commented 2 years ago

@obvionaoe Everything except GITHUB_CLIENT_ID, GITHUB_CLIENT_SECRET, and GITHUB_CLIENT_CALLBACK_URL are default Laravel env vars — fill them out if you need them, otherwise leave them blank. In your instance, you shouldn't need a port for SQLite so you can leave it blank

obvionaoe commented 2 years ago

Ok, thanks!