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
I have to run separate shell scripts to run the Server and Client. In NPM I can run both the server and client with 1 command. I'm sure it's possible just not sure how to code that with FAKE
I personally prefer to launch them separately, but you certainly could do this via FAKE.
If you are more comfortable with npm, you could bypass FAKE altogether and just use npm script runner.
Just add a "dev" script to your 'packages.json' file:
"scripts": {
"api": "dotnet watch --project ../WebApi/WebApi.fsproj run",
"dev": "concurrently --kill-others \"npm run start\" \"npm run api\""
"start": ...
)
No description provided.
The text was updated successfully, but these errors were encountered: