-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from berkmancenter/dev
2.2.0.1
- Loading branch information
Showing
127 changed files
with
2,366 additions
and
401 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
RECAPTCHA_SITE_KEY='6Leqp3MUAAAAALYR362-o36MbA_jTWgLfZgEifPj' | ||
RECAPTCHA_SECRET_KEY='6Leqp3MUAAAAAO4ZQlXOl1JVHawn0EoN5oHIC_PV' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM ruby:2.4.1 | ||
|
||
# Debian issue in Docker | ||
# https://superuser.com/a/1423685 | ||
RUN printf "deb http://archive.debian.org/debian/ jessie main\ndeb-src http://archive.debian.org/debian/ jessie main\ndeb http://security.debian.org jessie/updates main\ndeb-src http://security.debian.org jessie/updates main" > /etc/apt/sources.list | ||
RUN apt-get update && apt-get install -y build-essential nodejs bash \ | ||
postgresql tzdata git sqlite3 libsqlite3-dev default-jre \ | ||
g++ qt5-default libqt5webkit5-dev gstreamer1.0-plugins-base \ | ||
gstreamer1.0-tools gstreamer1.0-x && \ | ||
gem install mailcatcher --no-ri --no-rdoc | ||
|
||
RUN mkdir /app | ||
WORKDIR /app | ||
|
||
COPY . /app | ||
|
||
CMD ["/bin/bash", "docker/start_dev.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.