Hey guys, got a noob question here. When running: ...
# prefect-community
j
Hey guys, got a noob question here. When running:
Copy code
prefect create project "Test Project X"
I assume that under the hood prefect is hitting localhost:4200, is there any way to change that url?
c
Hi @JC Garcia - yes; assuming you are running Prefect Server, you can update these config settings to point to a new API endpoint: https://github.com/PrefectHQ/prefect/blob/master/src/prefect/config.toml#L10-L11 Note that you can override these settings via env var as well:
Copy code
PREFECT__SERVER__HOST
PREFECT__SERVER__PORT
1
j
thanks!
👍 1