Make on linux command not working
I have build-essential but it is still not working
43 Replies
Copied from #💻︱development just to be on the same page
What does
npx nx start --verbose
return?it does not return anything by now
does it take long to execute?
there is just a loading spinner
this is the out put
It doesn't take much time, it'll "block" your terminal as long as you want to run the project
But why it fails on
npx nx start --verbose
but not on npx nx start twenty-front
? That's weird
Just to make sure, did you run all commands for WSL from docs up to step 6? https://twenty.com/developers/local-setupI think i have forgot to copy env files
let me try that
no the same error is there
ok i think i got it
Could you explain what did you do in order to solve this?
dos2unix ./linux/provision-postgres-linux.sh
ran this command first for all files
chmod +x ./linux/provision-postgres-linux.sh
then this
and then finally ran the make command
Ah
Classic CRLF problem
Didn't think of it
Good to know you've solved it
its done right?
Yes, it's done
what is CRLF problem btw
Stack Overflow
Difference between CR LF, LF and CR line break types
I'd like to know the difference (with examples if possible) between
CR LF (Windows), LF (Unix) and CR (Macintosh) line break types.
will look into it
thanks for your time
do you actively contribute to this project
the yoga graphql is working but the frontend is not opening
Did you type
localhost:3001
? localhost:3000
is for GraphQLyes
these are the logs i am seeing
Okay, what does browser show when you go to
localhost:3001
? Blank page?tried running separately and this happened
Hey @ɃØĦɆᵾS you still there?
Hi @saras, could you remove your twenty setup and start again following https://twenty.com/developers/local-setup please. Put all steps you follow in this thread 🙂
Twenty - Local Setup
Mostly for contributors or curious developers
sorry I didn't get it
For me the frontend is not getting started
Backend is working
wait
I see a space in your folder name
all coding
can you rename that folder without a space and try againok let me try
is this ok now? because the web page is still not getting loaded
nothing it's just loading
any errors in console/network?
do you have your backend running?
I have used npx nx start command
it stats both right?
all right
it worked
thanks a lot for help
the backend is taking too much time to start
great !!
Can you pls tell me how that folder name solved the issue
I would have never imagined this in my wildest of dreams 😅
You have the explication of the error in SO https://stackoverflow.com/questions/35813033/typescript-ts5042build-option-project-cannot-be-mixed-with-source-files-on-a
Stack Overflow
Typescript TS5042 Build: Option 'project' cannot be mixed with sour...
I am receiving the following error across all typescript projects that I am trying run.
TS5042 Build: Option 'project' cannot be mixed with source files on a command line.
I have downloaded a free
you are supposed to call
tsc --project <project_path>
but with a space in your project path it thought you were adding several pathohh got it