Sha256: 98d236f23a72a5c1f6a3ebed58234c1d52ed3283137cf678e1f7432f042b8a41

Contents?: true

Size: 739 Bytes

Versions: 152

Compression:

Stored size: 739 Bytes

Contents

#!/usr/bin/env ruby

require_relative 'helpers'

app_root do
  use_docker = ask(
    question: 'Would you like to use Docker Compose for Postgres?',
    valid_answers: ['y', 'N']
  )

  header 'Configuring git'
  run! 'git remote add upstream https://github.com/avo-hq/avo.git'

  header 'Installing gems'
  run! 'bundle install'

  header 'Installing Yarn packages'
  run! 'yarn'

  if use_docker
    header 'Creating the Docker volume'
    run! 'docker volume create --name=avo-db-data'

    header 'Creating and running the Docker image'
    run! 'docker-compose up -d'
  end

  header 'Preparing the database'
  run! 'bin/rails db:setup'

  if use_docker
    header 'Stopping the Docker image'
    run! 'docker-compose stop'
  end
end

Version data entries

152 entries across 152 versions & 1 rubygems

Version Path
avo-1.25.2 bin/init
avo-2.1.2.pre2 bin/init
avo-2.1.2.pre1 bin/init
avo-1.25.1 bin/init
avo-2.1.1 bin/init
avo-2.1.0 bin/init
avo-2.0.0 bin/init
avo-1.25.0 bin/init
avo-1.24.2 bin/init
avo-1.24.1 bin/init
avo-1.24.0 bin/init
avo-1.23.0 bin/init
avo-1.22.4 bin/init
avo-1.22.3 bin/init
avo-1.22.2 bin/init
avo-1.22.1 bin/init
avo-1.22.1.pre.2 bin/init
avo-1.22.1.pre.1 bin/init
avo-1.22.0 bin/init
avo-1.22.0.pre.1 bin/init