Skip to content

Commit 401db31

Browse files
committed
Commit Inicial Decidim 0.20 stag-ahoranostoca
0 parents  commit 401db31

File tree

435 files changed

+9284
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

435 files changed

+9284
-0
lines changed

Diff for: .gitignore

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile '~/.gitignore_global'
6+
7+
# Ignore bundler config.
8+
/.bundle
9+
10+
# Ignore the default SQLite database.
11+
/db/*.sqlite3
12+
/db/*.sqlite3-journal
13+
14+
# Ignore all logfiles and tempfiles.
15+
/log/*
16+
/tmp/*
17+
!/log/.keep
18+
!/tmp/.keep
19+
20+
# Ignore uploaded files in development
21+
/storage/*
22+
!/storage/.keep
23+
24+
/node_modules
25+
/yarn-error.log
26+
27+
/public/assets
28+
.byebug_history
29+
30+
# Ignore master key for decrypting credentials and more.
31+
/config/master.key
32+
/config/application.yml
33+
34+
# Ignore public uploads
35+
public/uploads

Diff for: .ruby-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.6.3

Diff for: Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
FROM decidim/decidim:0.20.0

Diff for: Gemfile

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# frozen_string_literal: true
2+
3+
source "https://rubygems.org"
4+
5+
ruby RUBY_VERSION
6+
7+
gem "decidim", "0.20.0"
8+
# gem "decidim-consultations", "0.20.0"
9+
# gem "decidim-initiatives", "0.20.0"
10+
11+
gem "bootsnap", "~> 1.3"
12+
13+
gem "puma", "~> 3.12.2"
14+
gem "uglifier", "~> 4.1"
15+
16+
gem "faker", "~> 1.9"
17+
gem "figaro"
18+
19+
group :development, :test do
20+
gem "byebug", "~> 11.0", platform: :mri
21+
22+
gem "decidim-dev", "0.20.0"
23+
end
24+
25+
group :development do
26+
gem "letter_opener_web", "~> 1.3"
27+
gem "listen", "~> 3.1"
28+
gem "spring", "~> 2.0"
29+
gem "spring-watcher-listen", "~> 2.0"
30+
gem "web-console", "~> 3.5"
31+
end
32+
33+
group :production do
34+
gem "passenger"
35+
gem 'delayed_job_active_record'
36+
gem "daemons"
37+
end

0 commit comments

Comments
 (0)