Skip to content
This repository has been archived by the owner on Jun 27, 2023. It is now read-only.

Commit

Permalink
Mailman rewrite
Browse files Browse the repository at this point in the history
  • Loading branch information
phiilu committed Nov 10, 2017
2 parents eea11d1 + d4c6331 commit f1dd583
Show file tree
Hide file tree
Showing 228 changed files with 22,993 additions and 2,662 deletions.
4 changes: 4 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"presets": ["backpack-core/babel", "react"],
"plugins": ["transform-react-jsx"]
}
11 changes: 11 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Items that don't need to be in a Docker image.
# Anything not used by the build system should go here.
Dockerfile
.dockerignore
.gitignore
README.md

# Artifacts that will be built during image creation.
# This should contain all files created during `npm run build`.
build/**/*
node_modules/**/
28 changes: 3 additions & 25 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,25 +1,3 @@
# 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 Byebug command history file.
.byebug_history

/config/database.yml

/config/deploy/
node_modules/**/*
build/**/*
.env
42 changes: 0 additions & 42 deletions Capfile

This file was deleted.

21 changes: 21 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# You should always specify a full version here to ensure all of your developers
# are running the same version of Node.
FROM node:8.6.0

# Override the base log level (info).
ENV NPM_CONFIG_LOGLEVEL warn

# Install and configure `serve`.
CMD npm start
EXPOSE 4000

# Install all dependencies of the current project.
COPY package.json package.json
COPY package-lock.json package-lock.json
RUN npm install

# Copy all local files into the image.
COPY . .

# Build for production.
RUN npm run build --production && cd client && npm run build --production && cd -
60 changes: 0 additions & 60 deletions Gemfile

This file was deleted.

214 changes: 0 additions & 214 deletions Gemfile.lock

This file was deleted.

Loading

0 comments on commit f1dd583

Please sign in to comment.