Search Results for "ruby-on-rails-or-node-js-who-is-the-leader-of-2017"

Lessons





















Forum Threads

Setup Windows 10 Discussion

236
General
Hi,I got all the way through this so thanks for the walk through! I run "rails server -b 0.0.0.0" and the server boots fine but when I go to localhost:3000 in the browser, the browser icon spins bu...

Setup Ubuntu 13.10 Saucy Salamander Discussion

96
General
I believe in the line "sudo apt-get install postgresql-common -t raring," raring should actually be saucy. Also in the line "rails new myapp -d postgres," postgres should be postgresql.
Someone replied

Setup Ruby On Rails on Ubuntu 15.10 Wily Werewolf

34
General
Thanks for this amazing tutorial! you just described every step!
Someone replied

Should I switch to RoR from Laravel?

6
General
Hello there, I'm a web developer and using Laravel for day-to-day life. It's been around 5 years of developing with Laravel. But I feel neither comfortable nor confident using Laravel. And I feel ...
Tonni Alex replied
Solved

How to use Uppy with ActiveStorage Discussion

37
General
Thanks for this!
Brian Carpenter replied

Install Bootstrap with Webpack with Rails 6 Beta

13
Javascript
For those of you who are going to give Rails 6 Beta a test run here is how I have installed Bootstrap 4.3.1 and configured with Webpack **Step 1:** `yarn add bootstrap@4.3.1 jquery popper.js` **S...
Solved

Deploy Ubuntu 14.04 Trusty Tahr Discussion

371
General
The following commands should be slightly modified:cap install STAGES=productioncap production deployI believe it should be the following:bundle exec cap install STAGES=productionbundle exec cap pr...
paul lahana replied

Using Vagrant for Rails Development Discussion

159
General
Trying to install the librarian-chef plugin first produces an error about not being able to find the vmware-workstation plugin (or rather gem). Installing the vbguest plugin first fixed the issue.
Bob Bannister replied

Setup Ubuntu 14.04 Trusty Tahr Discussion

237
General
thnx
Someone replied

rbenv: bundle: command not found

15
Servers
I'm trying to deploy my Rails app on my Digital Oceans VPS but I'm running into a error: Running `cap production deploy` ends up with this error: INFO[7cd03924] Running ~/.rbenv/bin/rbenv exec b...
shakycode replied

Using React

19
Rails
I'm trying to learn how to use react in my rails 5 app. I've just finished following Kenny Hibino's you tube series for his medium clone. He used react-rails gem, but then realised he wanted to u...
Rio replied
Solved

Checking webpacker is cause of for time sink

1
Rails
Working on a ruby on rails application. Let's say I make a small change to any class file and make a request to some page on my application. Then my response times are increased by anywhere from 2...

Ruby issue when doing cap deploy production

68
General
Hi, I'm following the Deploy Rails guide. However, when I run cap production deploy I'm getting this error message: $cap production deploy DEBUG[be6b6bd6] Running /usr/bin/env [ -d ...
shakycode replied

Deploy Ubuntu 18.04 Bionic Beaver Discussion

79
General
Thanks btihen! I'll get the tutorial updated for its changes shortly!

Setup Ubuntu 22.10 Kinetic Kudu Discussion

2
General
I would use rvm or rbenv to manage ruby versions on per projects with the standard `.ruby-version` rvm is a heavier beast compared to rbenv. if you are not changing ruby version often. us rbenv.. o...
Freibuis replied

How to use Bootstrap with Webpack & Rails Discussion

50
General
Thanks for posting this and the previous video on using tailwindcss. It's helpful to see the main themes reinforced in each of the videos. One thing that I'm struggling with is what seems like a vi...
bradley replied

I get error when deploy to heroku

1
General
I get error when deploy to heroku Here is the log file: -----> Building on the Heroku-20 stack -----> Determining which buildpack to use for this app ! Warning: Multiple default buildpa...
Alan Reid replied

How to use ESBuild in Rails with JSBundling Discussion

30
General
This is awesome, I have been using it for a couple of weeks now. I didn’t necessarily think webpacker was slow, except maybe on Heroku builds. But when you use this, you wonder why you put up with ...
Aaron replied

Jumpstart App get's stucked with wrong login data

9
General
Hi. I've created a new app by using the jumpstart template: rails new testapp -d postgresql -m https://raw.githubusercontent.com/excid3/jumpstart/master/template.rb' rails db:create db:migrate rai...
Martin replied
Solved

How to use Devise with Hotwire & Turbo.js Discussion

81
General
Hey Chris - If we are still using Webpacker, we just need to change data-turbolinks-track to data-turbo-track in our layout files? In your episode repo, you still have it as turbolinks. <%= st...