Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
AshDyson committed Feb 22, 2021
2 parents 70b4bc8 + b6a3442 commit 96f7dbb
Show file tree
Hide file tree
Showing 110 changed files with 7,992 additions and 6,072 deletions.
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# petio

To build all images and start in docker
`make build`
Request, review and discover companion app for plex.

Once running access the admin dash at http://localhost:7777/admin/ (ensure trailing slash)
follow setup, once set up finishes admin login will be available to access dashboard, to access user frontend http://localhost:7777
Allow your users to interact with media both on and off your server with this app. Available as a docker image and also as binaries. Features a React frontend utilizing Redux and a Node JS express API and MongoDb database.


Read our install instructions and then visit `http://localhost:7777/admin/` to begin the setup wizard.

To build from source run `make run` requires node 14 or higher
19 changes: 16 additions & 3 deletions admin/.editorconfig
Original file line number Diff line number Diff line change
@@ -1,12 +1,25 @@
root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 2

end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

[{package,bower}.json]
indent_style = space
indent_size = 2

[{.eslintrc,.scss-lint.yml}]
indent_style = space
indent_size = 2

[*.{scss,sass}]
indent_style = space
indent_size = 2
2 changes: 1 addition & 1 deletion admin/.eslintcache

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions admin/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": ["eslint:recommended", "plugin:react/recommended"],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": ["react", "prettier"],
"rules": {
"react/prop-types": 0,
"no-class-assign": 0
}
}

0 comments on commit 96f7dbb

Please sign in to comment.