Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
HarveyKandola committed Jul 8, 2016
0 parents commit 18933c6
Show file tree
Hide file tree
Showing 1,841 changed files with 810,642 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.DS_Store
.git
bin
64 changes: 64 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
# Compiled Object files, Static and Dynamic libs (Shared Objects)
*.o
*.a
*.so

# Folders
_obj
_test
_uploads
_diffs
_convert
.srclib-cache
.DS_Store
.idea
.vscode

# Documize build artifacts
bin/*
dist/*
/documize/web/bindata/*
app/dist/*
app/dist-prod/*

# Architecture specific extensions/prefixes
*.[568vq]
[568vq].out

# Go specific
*.cgo1.go
*.cgo2.c
_cgo_defun.c
_cgo_gotypes.go
_cgo_export.*
_testmain.go
*.exe
*.test
/plugin-libreoffice/plugin-libreoffice
/plugin-libreoffice/plugin-libreoffice-osx

# Ember specific
/app/dist
/app/dist-prod
/app/tmp
/app/bower_components
/app/node_modules
/app/.sass-cache
/app/connect.lock
/app/coverage/*
/app/libpeerconnection.log
/app/npm-debug.log
/app/testem.log

# Misc.
documize/web/bindata_assetfs.go
build
plugin-msword/plugin-msword
plugin-msword/plugin-msword-osx
npm-debug.log
debug
*.pem
*.crt
Dockerfile
container.sh
make.sh
50 changes: 50 additions & 0 deletions .jsbeautifyrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"css": {
"indent_size": 4,
"indent_level": 0,
"indent_with_tabs": true,
"preserve_newlines": true,
"max_preserve_newlines": 2,
"newline_between_rules": true
},
"html": {
"indent_size": 4,
"indent_level": 0,
"indent_with_tabs": true,
"preserve_newlines": true,
"max_preserve_newlines": 2,
"wrap_line_length": 0,
"indent_handlebars": true,
"indent_inner_html": false,
"indent_scripts": "keep"
},
"hbs": {
"indent_size": 4,
"indent_level": 0,
"indent_with_tabs": true,
"max_preserve_newlines": 2,
"preserve_newlines": true,
"wrap_line_length": 0
},
"js": {
"indent_size": 4,
"indent_level": 0,
"indent_with_tabs": true,
"preserve_newlines": true,
"wrap_line_length": 0,
"break_chained_methods": false,
"max_preserve_newlines": 2,
"jslint_happy": true,
"brace_style": "collapse-preserve-inline",
"keep_function_indentation": false,
"space_after_anon_function": false,
"space_before_conditional": true,
"space_in_empty_paren": false,
"space_in_paren": false
},
"sql": {
"indent_size": 4,
"indent_level": 0,
"indent_with_tabs": true
}
}
4 changes: 4 additions & 0 deletions .jshintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
app/public/tinymce/**
app/public/tinymce/
app/public/tinymce

10 changes: 10 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
dist/**
tmp/**
build/**
cache/**
node_modules/**
bower_components/**
.sass-cache/**
connect.lock/**
coverage/*/**
libpeerconnection.log
3 changes: 3 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Please see this document for contribution guidelines and process:

https://developers.documize.com/s/leFaXwlU/open-source/d/VzO94aMOCgABGyfe/contributing
Loading

0 comments on commit 18933c6

Please sign in to comment.