Skip to content

Commit f337d71

Browse files
committed
Initial commit, generated with Decidim v0.13.1
0 parents  commit f337d71

File tree

345 files changed

+6690
-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.

345 files changed

+6690
-0
lines changed

.gitignore

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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+
23+
/node_modules
24+
/yarn-error.log
25+
26+
/public/assets
27+
.byebug_history
28+
29+
# Ignore master key for decrypting credentials and more.
30+
/config/master.key
31+
32+
# Ignore public uploads
33+
public/uploads

.ruby-version

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

Dockerfile

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

Gemfile

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# frozen_string_literal: true
2+
3+
source "https://rubygems.org"
4+
5+
ruby RUBY_VERSION
6+
7+
gem "decidim", "0.13.1"
8+
# gem "decidim-consultations", "0.13.1"
9+
# gem "decidim-initiatives", "0.13.1"
10+
11+
gem "bootsnap", "~> 1.3"
12+
13+
gem "puma", "~> 3.0"
14+
gem "uglifier", "~> 4.1"
15+
16+
gem "faker", "~> 1.8"
17+
18+
group :development, :test do
19+
gem "byebug", "~> 10.0", platform: :mri
20+
21+
gem "decidim-dev", "0.13.1"
22+
end
23+
24+
group :development do
25+
gem "letter_opener_web", "~> 1.3"
26+
gem "listen", "~> 3.1"
27+
gem "spring", "~> 2.0"
28+
gem "spring-watcher-listen", "~> 2.0"
29+
gem "web-console", "~> 3.5"
30+
end

0 commit comments

Comments
 (0)