Skip to content

Commit

Permalink
feat(Rebuild): convert Cortex to a Rails Engine
Browse files Browse the repository at this point in the history
  • Loading branch information
toastercup committed Jan 26, 2018
1 parent d040763 commit b35560c
Show file tree
Hide file tree
Showing 443 changed files with 5,618 additions and 8,280 deletions.
51 changes: 0 additions & 51 deletions .cloud66/deploy_hooks.yml

This file was deleted.

104 changes: 0 additions & 104 deletions .cloud66/manifest.yml

This file was deleted.

7 changes: 0 additions & 7 deletions .cloud66/scripts/clobber_assets.sh

This file was deleted.

4 changes: 0 additions & 4 deletions .cloud66/scripts/db_seed.sh

This file was deleted.

7 changes: 0 additions & 7 deletions .cloud66/scripts/rebuild_indexes.sh

This file was deleted.

7 changes: 0 additions & 7 deletions .cloud66/scripts/reseed_core_plugin.sh

This file was deleted.

3 changes: 0 additions & 3 deletions .cloud66/scripts/yarn_install.sh

This file was deleted.

91 changes: 0 additions & 91 deletions .env.example

This file was deleted.

57 changes: 36 additions & 21 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,15 @@
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile '~/.gitignore_global'

# Build Artifacts
pkg/
node_package/lib
**.gem

# Ignore bundler config.
/.bundle
/vendor/bundle

/public/assets/
/public/uploads/

# Ignore the default SQLite database.
/log/*
/tmp/*
!/log/.keep
!/tmp/.keep

# Ignore all logfiles and tempfiles.
/log/*.log
/tmp

# Debug
.byebug_history

Expand All @@ -40,28 +32,51 @@
.sass-cache
capybara-*.html
.powrc
/public/system
/coverage/
/spec/tmp
/spec/examples.txt
**.orig
rerun.txt
pickle-email-*.html
.env
/.cloud66/stack.json

# these should all be checked in to normalise the environment:
# Gemfile.lock, .ruby-version, .ruby-gemset
# rspec failure tracking
.rspec_status

# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
# Environment
.rvmrc
.ruby-version
.env

# Documentation Artifacts
erd.pdf

#
# Dummy Spec App
#

spec/dummy/public/assets/
spec/dummy/public/uploads/
spec/dummy/public/system/

# Ignore the default SQLite database.
spec/dummy/db/*.sqlite3
spec/dummy/db/*.sqlite3-journal
spec/dummy/log/*.log
spec/dummy/node_modules/
spec/dummy/yarn-error.log
spec/dummy/storage/
spec/dummy/tmp/

# Ignore all logfiles and tempfiles.
/spec/dummy/log/*
/spec/dummy/tmp/*
!/spec/dummy/log/.keep
!/spec/dummy/tmp/.keep

# Webpacker Pipeline
npm-debug.log*
/public/packs
/public/packs-test
/spec/dummy/public/packs
/spec/dummy/public/packs-test
node_modules
/yarn-error.log
/spec/dummy/yarn-error.log
Loading

0 comments on commit b35560c

Please sign in to comment.