My Golang web application is detected as NodeJS

Hi,
I’m having trouble to have my first app deployed.
It’s a golang web app, that happens to use Tailwind CSS and I’m having problems because the fly launch command detects the app to be NodeJS.
I suspect that’s because of the presence og package.json file that I’m using on development to generate the proper CSS.
I’m no using a Dockerfile
How can I solve it?
Thanks

fly launch will autodetect your framework and it’s thinking that it’s a node app b/c of the package.json like you said. Try renaming it to .package.json, launch with --no-deploy, then deploy your app. You may have to edit the generated Dockerfile to handle the npm dep.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.