Skip to content

Commit

Permalink
Merge pull request #707 from silexlabs/develop
Browse files Browse the repository at this point in the history
New backend, Unifile v1, CloudExplorer v2, better UX, Dropbox fix
  • Loading branch information
lexoyo authored Mar 21, 2018
2 parents 94aeb2c + a19f76d commit 340314e
Show file tree
Hide file tree
Showing 125 changed files with 3,753 additions and 11,269 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ dist/client/libs/prodotype*
dist/client/functional-tests/publish
dist/client/functional-tests/editable.html
test/selenium-server-standalone-2.37.0.jar
.vscode
7 changes: 0 additions & 7 deletions .gitmodules

This file was deleted.

1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
6.2.2
8 changes: 6 additions & 2 deletions .pm2.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@
"watch" : "dist/server/",
"env": {
"NODE_ENV": "production",
"GITHUB_CLIENT_ID": "a173a2e4af98211d94c9",
"GITHUB_CLIENT_SECRET": "1fce6f8127611c44bafaa19c3843d890cbd479df"
"DROPBOX_CLIENT_ID": "ckixgyo62obeo05",
"DROPBOX_CLIENT_SECRET": "ptg6u5iw7gs6r6o",
"GITHUB_CLIENT_ID": "f124e4148bf9d633d58b",
"GITHUB_CLIENT_SECRET": "1a8fcb93d5d0786eb0a16d81e8c118ce03eefece",
"ENABLE_FTP": true,
"ENABLE_SFTP": true
}
}]
}
8 changes: 7 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
FROM node:0.12
FROM node:6.5.0

# use test apps for localhost only
# these can be overriden using the `-e` option in docker run
ENV DROPBOX_CLIENT_ID=ckixgyo62obeo05 DROPBOX_CLIENT_SECRET=ptg6u5iw7gs6r6o GITHUB_CLIENT_ID=f124e4148bf9d633d58b GITHUB_CLIENT_SECRET=1a8fcb93d5d0786eb0a16d81e8c118ce03eefece
# ENV ENABLE_FTP=true ENABLE_SFTP=true ENABLE_WEBDAV=true

COPY . /silex
WORKDIR /silex
Expand All @@ -10,3 +15,4 @@ RUN apt-get update \

EXPOSE 6805
CMD ["node", "dist/server/server.js"]

2 changes: 1 addition & 1 deletion dist/client/css/editable.css
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ this makes the video clickable:
height:100%;
}
/* style while dragging */
.dragging-pending.silex-selected {
body .editable-style.dragging-pending.silex-selected {
z-index: 99999;
opacity: .75;
position: absolute;
Expand Down
128 changes: 0 additions & 128 deletions dist/client/libs/cloud-explorer/cloud-explorer.html

This file was deleted.

Loading

0 comments on commit 340314e

Please sign in to comment.