abhinav3295
abhinav3295
WWasp-lang
Created by abhinav3295 on 8/18/2024 in #đŸ™‹questions
Does wasp work with shadcn
@miho Can you share your patch for tailwind.cjs
19 replies
WWasp-lang
Created by abhinav3295 on 8/18/2024 in #đŸ™‹questions
Does wasp work with shadcn
Saw the update to the gist, will try it out
19 replies
WWasp-lang
Created by abhinav3295 on 8/18/2024 in #đŸ™‹questions
Does wasp work with shadcn
Even then the CSS is all broken, here is the repository: https://github.com/abhinav3295/wasp-demo
19 replies
WWasp-lang
Created by abhinav3295 on 8/18/2024 in #đŸ™‹questions
Does wasp work with shadcn
Turns out I was using the saas template, so I had to replace the line
Where is your global CSS file? … ./src/Main.css
Where is your global CSS file? … ./src/Main.css
with
Where is your global CSS file? … ./src/client/Main.css
Where is your global CSS file? … ./src/client/Main.css
19 replies
WWasp-lang
Created by abhinav3295 on 8/18/2024 in #đŸ™‹questions
Does wasp work with shadcn
But I keep running into:
[plugin:vite:css] [postcss] /home/abhin/demo/opensaas/app/src/client/Main.css:36:3: The `!text-body` class does not exist. If `!text-body` is a custom class, make sure it is defined within a `@layer` directive.
/home/abhin/demo/opensaas/app/src/client/Main.css:36:2
34 |
35 | .apexcharts-legend-text {
36 | @apply !text-body dark:!text-bodydark;
| ^
37 | }
38 | .apexcharts-text {
[plugin:vite:css] [postcss] /home/abhin/demo/opensaas/app/src/client/Main.css:36:3: The `!text-body` class does not exist. If `!text-body` is a custom class, make sure it is defined within a `@layer` directive.
/home/abhin/demo/opensaas/app/src/client/Main.css:36:2
34 |
35 | .apexcharts-legend-text {
36 | @apply !text-body dark:!text-bodydark;
| ^
37 | }
38 | .apexcharts-text {
Any suggestions?
19 replies
WWasp-lang
Created by abhinav3295 on 8/18/2024 in #đŸ™‹questions
Does wasp work with shadcn
Hey @miho I had created a project with https://opensaas.sh/ and tried applying your gist
19 replies
WWasp-lang
Created by abhinav3295 on 8/9/2024 in #đŸ™‹questions
Trying to install wasp within a docker image, and it always fail
Any suggestions (I am fairly new to nodejs)
43 replies
WWasp-lang
Created by abhinav3295 on 8/9/2024 in #đŸ™‹questions
Trying to install wasp within a docker image, and it always fail
On server logs I see that the debugger is connected, but none of the breakpoints work
43 replies
WWasp-lang
Created by abhinav3295 on 8/9/2024 in #đŸ™‹questions
Trying to install wasp within a docker image, and it always fail
*processId
43 replies
WWasp-lang
Created by abhinav3295 on 8/9/2024 in #đŸ™‹questions
Trying to install wasp within a docker image, and it always fail
I am trying to connect (vscode) debugger to server using the processed
43 replies
WWasp-lang
Created by abhinav3295 on 8/9/2024 in #đŸ™‹questions
Trying to install wasp within a docker image, and it always fail
can you please also tell me how can I enable debugging for the wasp server content?
43 replies
WWasp-lang
Created by abhinav3295 on 8/9/2024 in #đŸ™‹questions
Trying to install wasp within a docker image, and it always fail
Thanks @miho
43 replies
WWasp-lang
Created by abhinav3295 on 8/10/2024 in #đŸ™‹questions
wasp command does not work in docker
Switching to a windows PC resolved the issue
15 replies
WWasp-lang
Created by abhinav3295 on 8/10/2024 in #đŸ™‹questions
wasp command does not work in docker
INterestingly this issue was happening only in my MacM2
15 replies
WWasp-lang
Created by abhinav3295 on 8/10/2024 in #đŸ™‹questions
wasp command does not work in docker
@kapa.ai any followup reponses that can help me with this issue?
15 replies
WWasp-lang
Created by abhinav3295 on 8/10/2024 in #đŸ™‹questions
wasp command does not work in docker
@kapa.ai I am already using a Dockerfile, here is its content
FROM ubuntu:focal
RUN apt-get update -y
RUN apt-get install curl bash -y

ENV NVM_DIR $HOME/.nvm
ENV NODE_VERSION 18.12.0

RUN mkdir $NVM_DIR
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.0/install.sh | bash

RUN \. $NVM_DIR/nvm.sh && \
nvm install $NODE_VERSION

ENV PATH $PATH:/root/.local/bin

RUN curl -sSL https://get.wasp-lang.dev/installer.sh | bash
FROM ubuntu:focal
RUN apt-get update -y
RUN apt-get install curl bash -y

ENV NVM_DIR $HOME/.nvm
ENV NODE_VERSION 18.12.0

RUN mkdir $NVM_DIR
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.0/install.sh | bash

RUN \. $NVM_DIR/nvm.sh && \
nvm install $NODE_VERSION

ENV PATH $PATH:/root/.local/bin

RUN curl -sSL https://get.wasp-lang.dev/installer.sh | bash
When running wasp command, I keep getting following error:
root@41f88f297d9b:/# wasp version
/root/.local/bin/wasp: line 2: 440 Killed waspc_datadir=/root/.local/share/wasp-lang/0.14.0/data /root/.local/share/wasp-lang/0.14.0/wasp-bin "$@"
root@41f88f297d9b:/# wasp version
/root/.local/bin/wasp: line 2: 440 Killed waspc_datadir=/root/.local/share/wasp-lang/0.14.0/data /root/.local/share/wasp-lang/0.14.0/wasp-bin "$@"
15 replies
WWasp-lang
Created by abhinav3295 on 8/9/2024 in #đŸ™‹questions
Trying to install wasp within a docker image, and it always fail
and the code samples in the installation guide uses node v.20
43 replies
WWasp-lang
Created by abhinav3295 on 8/9/2024 in #đŸ™‹questions
Trying to install wasp within a docker image, and it always fail
What you are referring to is older documentation, in the latest version its recommended to use node version higher than 18
43 replies