Rails and Vite project start command?
Hi all, I'm trying to get a Rails/Vite/Svelte mono repo app to start in Railway I've tried
bin/rails s && bin/vite dev
to start it as well as using the Gem Foreman but neither have worked. the firs only started the rails server and the second crashes because it can't find the procfile that is clearly in the root directory. I'm not sure what to do here?11 Replies
Project ID:
0864e050-0637-4aa1-a1f4-48128bef6f69
0864e050-0637-4aa1-a1f4-48128bef6f69
well first off, you absolutely don't want to run a development server on railway as they are incredibly fragile and costly.
can you describe your project structure?
GitHub
GitHub - whatnotery/random_movie_rails_API at inertia-svelte-frontend
Contribute to whatnotery/random_movie_rails_API development by creating an account on GitHub.
looks like you have them mashed together, any reason for that?
Thats how Inertia structures projects
https://github.com/inertiajs/inertia-rails
GitHub
GitHub - inertiajs/inertia-rails: The Rails adapter for Inertia.js.
The Rails adapter for Inertia.js. Contribute to inertiajs/inertia-rails development by creating an account on GitHub.
does this mean that rails is serving the frontend?
hold on I think I may have figured it out? I'm doing a redeploy to test
I'm just trying to understand the practicality of mashing two very different languages into a singular folder, instead of a isolated monorepo style
if you had this kind of structure, it would be a walk in the park to deploy onto railway
Inertia essentiall allows a backend to use front end frameworks as views and feed data into frontend framework components as props directly as opposed to having to do api calls and having seperate applications
I did figure it out though I needed to add vite build as a build step
its working as expected now
okay I think I understand the reasoning, happy you where about to get it working