Fails to build #30
Labels
No Label
bug
documentation
duplicate
enhancement
good first issue
help wanted
infrastructure
invalid
question
wontfix
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: bit-badger/jobs-jobs-jobs#30
Loading…
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/App
and runnpm i
, thennpm run build
to build the app. Then, change to../Api
and executedotnet build
. If you're wanting to run it, you'll need to have a RethinkDB server handy, then put this inappsettings.json
You can then run
npm run apiserve
from the/App
directory, 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.sh
is executable, then you can run./fake.sh build
to 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 Publish
to make version 2.2.2.I'll close this issue shortly.