Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Jose Miguel Díez de la Lastra committed Dec 19, 2018
0 parents commit a498fdf
Show file tree
Hide file tree
Showing 395 changed files with 8,480 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .chamber.pub.pem
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
-----BEGIN PUBLIC KEY-----
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr4Q5mM9rtKqmFx34TrBd
EkH5f4g+h/8upV0nUet9SQfu51TzISLReQq54zzQOjGKiE0vf/JosOtkD9Gz9OON
z1rqJZyGyNM4l8i8SFoDHIn/BTo6AKqu8zC8q5yCq1IPiMoQbHX7aP1mxP3sGmSF
eyWGUBXycZGi5oLMiOgu1cIFtIyPSVzklbo48z9HijxVeo7MpX4DrqXmJXJNxRJP
llPZdU/cpJDzusNs4kH8eGHJ/P9SDsFVbW8pAPoUIXVmtQJFhnMpki/iEVnEXDI2
18tMJOJJolz8LWZhmzAFpHaiNxwK44oHZRvjre7JG0fnYV7PKlxDInidFyEb1WtB
DwIDAQAB
-----END PUBLIC KEY-----
36 changes: 36 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
#
# If you find yourself ignoring temporary files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile '~/.gitignore_global'

# Ignore bundler config.
/.bundle

# Ignore the default SQLite database.
/db/*.sqlite3
/db/*.sqlite3-journal

# Ignore all logfiles and tempfiles.
/log/*
/tmp/*
!/log/.keep
!/tmp/.keep

# Ignore uploaded files in development
/storage/*
!/storage/.keep

/node_modules
/yarn-error.log

/public/assets
.byebug_history

# Ignore master key for decrypting credentials and more.
/config/master.key

# Ignore public uploads
public/uploads

.idea
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ruby-2.5.1
34 changes: 34 additions & 0 deletions Capfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Load DSL and set up stages
require 'chamber'
require 'capistrano/setup'

# Include default deployment tasks
require 'capistrano/deploy'

# 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/rails'
require 'capistrano-db-tasks'
require 'airbrussh/capistrano'
require 'capistrano/bundler'
require 'capistrano/passenger'

# Load custom tasks from `lib/capistrano/tasks' if you have any defined
Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
FROM decidim/decidim:0.15.1
43 changes: 43 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# frozen_string_literal: true

source "https://rubygems.org"

ruby RUBY_VERSION

gem 'activerecord-session_store'
gem 'chamber', '~> 2.10.1'

gem "decidim", "0.15.1"
# gem "decidim-consultations", "0.15.1"
# gem "decidim-initiatives", "0.15.1"

gem "bootsnap", "~> 1.3"

gem "puma", "~> 3.0"
gem "uglifier", "~> 4.1"

gem "faker", "~> 1.9"

group :development, :test do
gem "byebug", "~> 10.0", platform: :mri

gem "decidim-dev", "0.15.1"
end

group :development do
gem 'airbrussh', require: false
gem 'capistrano', '3.3.5'
gem 'capistrano-bundler', '~> 1.2'
gem 'capistrano-db-tasks', require: false
gem 'capistrano-faster-assets', '~> 1.0'
gem 'capistrano-passenger'
gem 'capistrano-rails'
gem "letter_opener_web", "~> 1.3"
gem "listen", "~> 3.1"
gem "spring", "~> 2.0"
gem "spring-watcher-listen", "~> 2.0"
gem "web-console", "~> 3.5"
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
Loading

0 comments on commit a498fdf

Please sign in to comment.