Skip to content

Commit

Permalink
Bug fixes and package updates
Browse files Browse the repository at this point in the history
  • Loading branch information
peterjoseph committed Apr 29, 2019
1 parent c3e432b commit 7d45c0a
Show file tree
Hide file tree
Showing 10 changed files with 812 additions and 255 deletions.
1 change: 1 addition & 0 deletions config.env
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ S3_BUCKET=
S3_ACCELERATE_ENDPOINT=
S3_FORCE_PATH_STYLE=
S3_BUCKET_ENDPOINT=
S3_FILE_DEST=
S3_SIGNATURE_VERSION=

# AWS Cloudfront
Expand Down
3 changes: 2 additions & 1 deletion config.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ let config = {
forcePathStyle: String(process.env.S3_FORCE_PATH_STYLE) === "true",
bucketEndpoint: String(process.env.S3_BUCKET_ENDPOINT) === "true",
signatureVersion: process.env.S3_SIGNATURE_VERSION,
bucket: process.env.S3_BUCKET
bucket: process.env.S3_BUCKET,
fileDestination: process.env.S3_FILE_DEST
},
cloudfront: {
enabled: String(process.env.CF_ENABLED) === "true",
Expand Down
24 changes: 18 additions & 6 deletions documentation/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2392,12 +2392,24 @@ <h2 class="section__title">11.0 Database Updates</h2>
<a name="12.0">
<h2 class="section__title">12.0 License</h2>
</a>
<p>
Copyright &copy; Make Paperless - All Rights Reserved.<br>
Unauthorized copying of any Reeve application files, via any medium is strictly prohibited.<br>
Reeve is proprietary and confidential.
</p>
<p>Written by Peter Joseph (contact@peterajoseph.com), 8th December 2018.</p>
<p>MIT License</p>
<p>Copyright (c) 2019 Peter Joseph</p>
<p>Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:</p>
<p>The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.</p>
<p>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.</p>
<p>Written by Peter Joseph (contact@peterajoseph.com), 24th April 2019.</p>
</section>
</article>
</div>
Expand Down
21 changes: 21 additions & 0 deletions license.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2019 Peter Joseph

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading

0 comments on commit 7d45c0a

Please sign in to comment.