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

Commit

Permalink
Massive Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
pantsel committed Mar 11, 2017
1 parent f704961 commit 9053097
Show file tree
Hide file tree
Showing 492 changed files with 425 additions and 24,086 deletions.
File renamed without changes.
129 changes: 115 additions & 14 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,20 +1,121 @@
################################################
############### .gitignore ##################
################################################
#
# This file is only relevant if you are using git.
#
# Files which match the splat patterns below will
# be ignored by git. This keeps random crap and
# sensitive credentials from being uploaded to
# your repository. It allows you to configure your
# app for your machine without accidentally
# committing settings which will smash the local
# settings of other developers on your team.
#
# Some reasonable defaults are included below,
# but, of course, you should modify/extend/prune
# to fit your needs!
################################################




################################################
# Local Configuration
#
# Explicitly ignore files which contain:
#
# 1. Sensitive information you'd rather not push to
# your git repository.
# e.g., your personal API keys or passwords.
#
# 2. Environment-specific configuration
# Basically, anything that would be annoying
# to have to change every time you do a
# `git pull`
# e.g., your local development database, or
# the S3 bucket you're using for file uploads
# development.
#
################################################

config/local.js





################################################
# Dependencies
#
# When releasing a production app, you may
# consider including your node_modules and
# bower_components directory in your git repo,
# but during development, its best to exclude it,
# since different developers may be working on
# different kernels, where dependencies would
# need to be recompiled anyway.
#
# More on that here about node_modules dir:
# http://www.futurealoof.com/posts/nodemodules-in-git.html
# (credit Mikeal Rogers, @mikeal)
#
# About bower_components dir, you can see this:
# http://addyosmani.com/blog/checking-in-front-end-dependencies/
# (credit Addy Osmani, @addyosmani)
#
################################################

node_modules
bower_components




################################################
# Sails.js / Waterline / Grunt
#
# Files generated by Sails and Grunt, or related
# tasks and adapters.
################################################
.tmp
dump.rdb





################################################
# Node.js / NPM
#
# Common files generated by Node, NPM, and the
# related ecosystem.
################################################
lib-cov
*.seed
*.log
*.out
*.pid
npm-debug.log





################################################
# Miscellaneous
#
# Common files generated by text editors,
# operating systems, file systems, etc.
################################################

*~
*#
.DS_STORE
.netbeans
nbproject
.idea
.node_history
frontend/.tmp
frontend/node_modules
backend/.tmp
backend/node_modules
backend/config/local.js
node_modules
npm-debug.log
frontend/npm-debug.log
_README.md
frontend/config/config.json
backend/api/services/remote/credentials/google-spreadsheets
frontend/bower_components/
screenshots/
bin/
/logs/*
!/logs/.gitkeep
/config/mssqlconfig.js
108 changes: 91 additions & 17 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,102 @@
#
# Files which match the splat patterns below will
# be ignored by git. This keeps random crap and
# and sensitive credentials from being uploaded to
# sensitive credentials from being uploaded to
# your repository. It allows you to configure your
# app for your machine without accidentally
# committing settings which will smash the local
# settings of other developers on your team.
# committing settings which will smash the local
# settings of other developers on your team.
#
# Some reasonable defaults are included below,
# but, of course, you should modify/extend/prune
# to fit your needs!
################################################




################################################
# Local Configuration
#
# Explicitly ignore files which contain:
#
# 1. Sensitive information you'd rather not push to
# your git repository.
# e.g., your personal API keys or passwords.
#
# 2. Environment-specific configuration
# Basically, anything that would be annoying
# to have to change every time you do a
# `git pull`
# e.g., your local development database, or
# the S3 bucket you're using for file uploads
# development.
#
################################################

config/local.js





################################################
# Dependencies
#
# When releasing a production app, you may
# consider including your node_modules and
# bower_components directory in your git repo,
# but during development, its best to exclude it,
# since different developers may be working on
# different kernels, where dependencies would
# need to be recompiled anyway.
#
# More on that here about node_modules dir:
# http://www.futurealoof.com/posts/nodemodules-in-git.html
# (credit Mikeal Rogers, @mikeal)
#
# About bower_components dir, you can see this:
# http://addyosmani.com/blog/checking-in-front-end-dependencies/
# (credit Addy Osmani, @addyosmani)
#
################################################

node_modules
bower_components




################################################
# Sails.js / Waterline / Grunt
#
# Files generated by Sails and Grunt, or related
# tasks and adapters.
################################################
.tmp
dump.rdb





################################################
# Node.js / NPM
#
# Common files generated by Node, NPM, and the
# related ecosystem.
################################################
lib-cov
*.seed
*.log
*.out
*.pid
npm-debug.log





################################################
# Miscellaneous
#
Expand All @@ -31,17 +116,6 @@
nbproject
.idea
.node_history
/frontend/bower_components/
/frontend/.tmp/
/frontend/dist/
/frontend/node_modules/
/backend/.tmp/
/backend/node_modules/
frontend/dist/
/backend/config/local.js
node_modules/
/npm-debug.log
/frontend/npm-debug.log
/_README.md
/frontend/config/config.json
/backend/api/services/remote/credentials/google-spreadsheets/
/logs/*
!/logs/.gitkeep
/config/mssqlconfig.js
File renamed without changes.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ COPY . /app

RUN npm --unsafe-perm --verbose install --production

EXPOSE 3000 1338
EXPOSE 1338

RUN chmod 777 ./start.sh

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"type": "service_account",
"project_id": "konga-148120",
"private_key_id": "84413cd1c5f890600ed6d0c77beb0040f2880471",
"private_key": "-----BEGIN PRIVATE KEY-----\nMIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQDB6r16wV0AGbG3\nHVY3hXc/g6r01UrYHQScNTAAA021zMKYJ8TLe3dJXm978avDcKkFeYL58dWVmTT9\nlICm8JsXGrLlx55K2MHs8NjrtEzI3c4xK2Y4pvFqDA+kKqQYgdxGlaaEyX8p0me3\nx2Zh8SgXRD+zUHTjZtL/oawU6FJkXY7D2ewmEhsYhvja+lqSv3GCOofhkfH/EtIX\nsdO9Jkg/UHHKjUW3UbS5U2HesiTGVtDMuP10TawT4d2CCGPdjRTUriTZU8jR1LcW\naHBA17QPMdWa9ObP3unUJebKv2p3shmNNfj46R6UcJSEKxhrviun3lo0aQYQLeAl\nVz4LTQIRAgMBAAECggEAHphOtON1LOLg6ycxxyjDm73GZ0KPwHEznQG3RQlAZYKc\n4SzFG+Wq+GRx6nhCxV8tC7QUOiMxs5ysg6W+dphXn9mSiDZqfxyb3CpTzzxvMPHt\n6kwSoLWWOUkV3qzrnwI+ItTRpPm1mn+b5Z8MRD+sN5+I/V2gU5CRkcuMPvA4r6Tc\nvLSv7x2Ilq8jWNiTNZS/ec39OcFObnL+gesgtw+PHlh+bITaXJKPqvEYM74TM5mh\nGth1EOm6YkOcoTvUSBYzmD1S+mrX5EcDiSxEL9je83banqbd631oAIjP8XmictjR\nYCznFvl7z9S4Bx0OvmvZeAR3eRZaoJgvbvHJ0THRAQKBgQDumQXw+WWWK8yEryCK\nfC1CxwKeKCig9VsrWeHD5llJK5kngEZbulJ7T/45MogMtfqbZ7DGzFVju5kSzs0v\n7NBRkJllgw0O2xh4hVjT+J2+QzA73IGDP1R3LnBfa5tUnzy8bNuKLh29qBffaTmx\nBOqFxDcb7akm9nfPC4rLz5XLCQKBgQDQD3Wvnge8YLPeCa+49crNnaubfp9I7F5M\nzAhyBocfz0s57LV2YbDIxhuK/c9n8STuRvyHoZAEtKHy4vQopxgtkRsa2Yx8yIOa\nKt0rSGX14zv6djgN18Mbc0f8kefgDwsx7GdTQ5mxs5ZojpYmDYiuzjbagwPqBSRK\nKk6Oe5nYyQKBgQC6d5jvFNnRnPU/FOanlBiDQajIFbZ65IWVwa7xPMq2pn4RIuzZ\nryna+U9DQDyXQnlSjpzXIMXzJZ+h1UECnV7I/+sCLIM+AviC6CPdtUUCdtvxTIlj\nG1FVu1NTH3PLlI8Q6zpAKX5QxFez4DaYI7FtTUWMbBZwPtqvUuPsGJWGkQKBgC7N\n+4SJQWZAPtZJSY2LRZchzBQL1RtbiQ8vqwqzqzwdrueV93BtI47W+iU3WawhVFSC\nBZchYjucwv3XzmNCy66cgQN2QyNjHC/XSq/M9prtBnYemBeNHSgUs/H+hLIj0Dnn\n24qgn3eZVdGpmd9vlfr1CuP3Ky8+/t3sTIXDCmX5AoGBAOirb1knm3jT7cbbtNfO\n5gEKw7GC9MPo/Sh9RDAhIEIhYkACgGSiWcQmOv17HJW55BCHlDVw4PDqv70XfnVT\nChbx7Rdcwy0Co+WK9wAmt8mQRM7njh4+wxVQWdDnfotAxrjFJtO7RPjpZ29oyvsK\n/iD5HA2q4XORpNgJ1nNZ/jGC\n-----END PRIVATE KEY-----\n",
"client_email": "[email protected]",
"client_id": "113335730171302572539",
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://accounts.google.com/o/oauth2/token",
"auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
"client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/pantsel%40konga-148120.iam.gserviceaccount.com"
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
></i>
</th>
</tr>
<tr data-ng-repeat="consumer in items">
<tr data-ng-repeat="consumer in items | orderBy:'created_at':true">
<td>
<input type="checkbox" data-ng-model="consumer.checked"/>
</td>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/dashboard">
<a class="navbar-brand" data-ui-sref-active="active" data-ui-sref="dashboard">
<img ng-src="images/konga-logo-small.png" class="konga-nav-icon"/>
</a>
</div>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
20 changes: 0 additions & 20 deletions backend/.dockerignore

This file was deleted.

47 changes: 0 additions & 47 deletions backend/.gitignore

This file was deleted.

26 changes: 0 additions & 26 deletions backend/.travis.yml

This file was deleted.

Loading

0 comments on commit 9053097

Please sign in to comment.