Github Related Environment Variables missing
I am having trouble accessing the github related environment variables for a project. The project is setup to deploy from github triggers and based on the docs here I was assuming I could access them by setting up a variable like:
RAILWAY_GIT_REPO_OWNER = ${{RAILWAY_GIT_REPO_OWNER}}
Is this not the case? How does one set this up? Thanks!Solution:Jump to solution
Got it!
modified
next.config.js
```
/** @type {import('next').NextConfig} */...8 Replies
Project ID:
c54e2141-8124-42c6-b31d-3158cb0a74a3
c54e2141-8124-42c6-b31d-3158cb0a74a3
those variables are auto injected, you can not set them yourself
Do you know if its possible to access them from a nextjs project? Will they be prepended with NEXT_PUBLIC?
no they wouldn't, that's something you'd need to do in a pre-run script
Solution
Got it!
modified
next.config.js
Could be useful to add to docs somewhereglad you where able to solve