Giter VIP home page Giter VIP logo

Comments (8)

ikari7789 avatar ikari7789 commented on July 18, 2024

Could you please edit this to use 3 ` marks on the new lines please? A single backtick will make it appear inline, 3 backticks makes it a block.

from laravel.

PaddyLock avatar PaddyLock commented on July 18, 2024

thanks, done

from laravel.

ikari7789 avatar ikari7789 commented on July 18, 2024

Could you please paste the entire Capfile (edit out anything sensitive if it exists)? It seems the problem is due to line 37? Is that the require capistrano/laravel line?

from laravel.

ikari7789 avatar ikari7789 commented on July 18, 2024

Are you loading any custom Capistrano tasks of your own?

from laravel.

PaddyLock avatar PaddyLock commented on July 18, 2024

here is the Capfile. Yes #37 is capistrano/laravel

# Load DSL and set up stages
require "capistrano/setup"

# Include default deployment tasks
require "capistrano/deploy"

# Load the SCM plugin appropriate to your project:
#
# require "capistrano/scm/hg"
# install_plugin Capistrano::SCM::Hg
# or
# require "capistrano/scm/svn"
# install_plugin Capistrano::SCM::Svn
# or
require "capistrano/scm/git"
install_plugin Capistrano::SCM::Git

# Include tasks from other gems included in your Gemfile
#
# For documentation on these, see for example:
#
#   https://github.com/capistrano/rvm
#   https://github.com/capistrano/rbenv
#   https://github.com/capistrano/chruby
#   https://github.com/capistrano/bundler
#   https://github.com/capistrano/rails
#   https://github.com/capistrano/passenger
#
# require "capistrano/rvm"
# require "capistrano/rbenv"
# require "capistrano/chruby"
# require "capistrano/bundler"
# require "capistrano/rails/assets"
# require "capistrano/rails/migrations"
# require "capistrano/passenger"

require "capistrano/laravel"

# Load custom tasks from `lib/capistrano/tasks` if you have any defined
Dir.glob("lib/capistrano/tasks/*.rake").each { |r| import r }

And this is my deploy.rb

# config valid only for current version of Capistrano
lock "3.8.0"

set :application, "my_project"
set :repo_url, "[email protected]:MyName/My-Project.git"

# Default value for :pty is false
set :pty, true

set :ssh_options, {
  user: 'ubuntu',
  keys: ['~/.ssh/id_rsa'],
  forward_agent: true,
  auth_methods: ["publickey"]
}

# Default branch is :master
# ask :branch, `git rev-parse --abbrev-ref HEAD`.chomp

# Default deploy_to directory is /var/www/my_app_name
set :deploy_to, "/var/www/html"

# Default value for :format is :airbrussh.
# set :format, :airbrussh

# You can configure the Airbrussh format using :format_options.
# These are the defaults.
# set :format_options, command_output: true, log_file: "log/capistrano.log", color: :auto, truncate: :auto

# Default value for :pty is false
# set :pty, true

# Default value for :linked_files is []
# append :linked_files, "config/database.yml", "config/secrets.yml"
append :linked_files, ".env"

# Default value for linked_dirs is []
# append :linked_dirs, "log", "tmp/pids", "tmp/cache", "tmp/sockets", "public/system"
append :linked_dirs, "storage"

And staging.rb

server 'ec2-12-345-678-90.eu-west-1.compute.amazonaws.com', user: 'ubuntu', roles: %w{app db web}

from laravel.

ikari7789 avatar ikari7789 commented on July 18, 2024

I've replicated your environment against a VM, and I can't seem to duplicate this problem at all.

from laravel.

PaddyLock avatar PaddyLock commented on July 18, 2024

Do you know what the error message means. Maybe it's a permissions error?

from laravel.

PaddyLock avatar PaddyLock commented on July 18, 2024

I have resolved my issue. I need to upgrade ruby from 2.0.0 to 2.4.0. This also involved updating bundler.

from laravel.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.