Fails to build #30
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I’m using Arch Linux. When I try to build Jobs, Jobs, Jobs, I get two errors:
It probably won't build with Mono; it using .NET (AKA ".NET Core"). You'll need .NET 6 RC 1 and NodeJS v16. Once you clone the repo, go into
src/JobsJobsJobs/Appand runnpm i, thennpm run buildto build the app. Then, change to../Apiand executedotnet build. If you're wanting to run it, you'll need to have a RethinkDB server handy, then put this inappsettings.jsonYou can then run
npm run apiservefrom the/Appdirectory, and it will build both parts then start the app. Without API keys, though, there's probably not a whole lot you could do once you get that going.While this still requires .NET 6 and NodeJS 16, there is now a script that uses FAKE to perform the build. If you clone the repo, make sure
fake.shis executable, then you can run./fake.sh buildto build the front end and the back end. There is still some configuration that it needs to run, but is not a part of this repository (plus a RethinkDB server), but this should make it easier to build. I used./fake.sh build --target Publishto make version 2.2.2.I'll close this issue shortly.