Hi, good afternoon Thanks for reading me! I am n...
# ask-community
a
Hi, good afternoon Thanks for reading me! I am new to Dasgter and I managed to create working a proof of concept (with open source version) but I have problems to deploying it in Windows. I have several corcerns that i will expand below: 1) Its is possible to deploy dasgter in windows as a service without intalling other programs? if no, what will be the recommended approach? The only way that i find that works is to open a "anaconda terminal" per dagit, dasgter-deamon (i setted the DAGSTER_HOME env variable) Articules that i find: https://docs.dagster.io/deployment/guides/service#running-dagster-as-a-service https://github.com/dagster-io/dagster/discussions/7223 2)I am looking to load a "module" (a project created from the default skeleton) with the workspace.yaml, is there a way to loading it using a relative path and not installing it? Articules that i find: https://docs.dagster.io/concepts/code-locations#local-development https://docs.dagster.io/concepts/code-locations/workspace-files#configuring-code-locations Thanks in advance!
c
it is possible to run dagster as a service in windows, as per the discussion you posted. Would recommend following that guide, is there a particular piece there that you’re having trouble with? I don’t think you can run dagster as a service anywhere without installing other programs, as you need at least some program to manage the deployment of dagster. With regards to loading a module, it sounds like you actually want to just load a single python file? You can’t load a module without installing it. If you want to point at a specific file, you can point a code location at a
python_file
, per the docs link you posted for configuring code locations
a
Thanks for the response! I wasnt sure if this was the best solution to deploy in windows (its 1 year old and maybe with the last versions there were a better way to do it)
c
yea I don’t think the deployment story for windows has changed all that much specifically