You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 20, 2023. It is now read-only.
Could esproj javascript projects be supported in service project value of tye.yaml?
We have backend csproj services which work fine with tye.
We have also UI vue frontends.
It would be nice to execute the whole system with tye.
To do it we would just add vue esproj services like project: ui.esproj.
I can add them now with executable service types:
<Project Sdk="Microsoft.VisualStudio.JavaScript.Sdk/0.5.83-alpha">
<PropertyGroup>
<StartupCommand>npm run serve -- --port #</StartupCommand>
<JavaScriptTestRoot>.\</JavaScriptTestRoot>
<JavaScriptTestFramework>Jest</JavaScriptTestFramework>
<!-- Command to run on project build -->
<BuildCommand>
</BuildCommand>
<!-- Command to create an optimized build of the project that's ready for publishing -->
<ProductionBuildCommand>npm run build</ProductionBuildCommand>
<!-- Folder where production build objects will be placed -->
<BuildOutputFolder>$(MSBuildProjectDirectory)\dist</BuildOutputFolder>
</PropertyGroup>
</Project>
We use tye only for development and docker compose for deployment.
Thank You
The text was updated successfully, but these errors were encountered:
Could esproj javascript projects be supported in service project value of tye.yaml?
We have backend csproj services which work fine with tye.
We have also UI vue frontends.
It would be nice to execute the whole system with tye.
To do it we would just add vue esproj services like
project: ui.esproj
.I can add them now with executable service types:
Executable with args is also defined in esproj:
We use tye only for development and docker compose for deployment.
Thank You
The text was updated successfully, but these errors were encountered: