Skip to content

Commit 13c1593

Browse files
committed
first commit
0 parents  commit 13c1593

File tree

247 files changed

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

247 files changed

+5033
-0
lines changed

.gitignore

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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 all logfiles and tempfiles.
11+
/log/*
12+
/tmp/*
13+
!/log/.keep
14+
!/tmp/.keep
15+
16+
/node_modules
17+
/yarn-error.log
18+
19+
.byebug_history
20+
21+
# Ignore public uploads
22+
public/uploads

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
FROM decidim/decidim:0.8.3

Gemfile

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# frozen_string_literal: true
2+
3+
source "https://rubygems.org"
4+
5+
ruby RUBY_VERSION
6+
7+
gem "decidim", path: ".."
8+
9+
# Uncomment the following line if you want to use decidim-assemblies plugin
10+
# gem "decidim-assemblies", path: ".."
11+
12+
gem "puma", "~> 3.0"
13+
gem "uglifier", ">= 1.3.0"
14+
15+
gem "faker", "~> 1.8.4"
16+
17+
group :development, :test do
18+
gem "byebug", platform: :mri
19+
20+
gem "decidim-dev", path: ".."
21+
end
22+
23+
group :development do
24+
gem "letter_opener_web", "~> 1.3.0"
25+
gem "listen", "~> 3.1.0"
26+
gem "spring"
27+
gem "spring-watcher-listen", "~> 2.0.0"
28+
gem "web-console"
29+
end

0 commit comments

Comments
 (0)