-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Web: Init Mail/Calendar Comming Soon pages
- Loading branch information
1 parent
4d644af
commit 6fbb566
Showing
57 changed files
with
2,373 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
echo "RUN ASC.Web.Calendar" | ||
call set BROWSER=none&&npm start --prefix ../../products/ASC.Calendar/Client |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
echo "RUN ASC.Web.Mail" | ||
call set BROWSER=none&&npm start --prefix ../../products/ASC.Mail/Client |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"presets": ["@babel/preset-react", "@babel/preset-env"], | ||
"plugins": [ | ||
"@babel/plugin-transform-runtime", | ||
"@babel/plugin-proposal-class-properties" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
PUBLIC_URL=/products/calendar | ||
WDS_SOCKET_PATH=/products/calendar/sockjs-node | ||
PORT=5017 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# See https://help.github.com/ignore-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
|
||
# testing | ||
/coverage | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
FROM node:12 | ||
WORKDIR /usr/src/app | ||
|
||
COPY package.json ./ | ||
COPY yarn.lock ./ | ||
|
||
RUN yarn install | ||
|
||
COPY . . | ||
|
||
RUN yarn build | ||
|
||
EXPOSE 5017 | ||
|
||
CMD [ "yarn", "build:start" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// script to enable webpack-bundle-analyzer | ||
process.env.NODE_ENV = "production"; | ||
const webpack = require("webpack"); | ||
const BundleAnalyzerPlugin = require("webpack-bundle-analyzer") | ||
.BundleAnalyzerPlugin; | ||
const webpackConfigProd = require("react-scripts/config/webpack.config")( | ||
"production" | ||
); | ||
|
||
webpackConfigProd.plugins.push(new BundleAnalyzerPlugin()); | ||
|
||
// actually running compilation and waiting for plugin to start explorer | ||
webpack(webpackConfigProd, (err, stats) => { | ||
if (err || stats.hasErrors()) { | ||
console.error(err); | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
{ | ||
"name": "@appserver/calendar", | ||
"version": "0.1.3", | ||
"private": "true", | ||
"homepage": "/products/calendar", | ||
"id": "32d24cb5-7ece-4606-9c94-19216ba42086", | ||
"title": "ONLYOFFICE", | ||
"scripts": { | ||
"start": "webpack-cli serve", | ||
"start-prod": "webpack --mode production && serve dist -p 5017", | ||
"build": "webpack --mode production", | ||
"serve": "serve dist -p 5017", | ||
"clean": "rm -rf dist" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.12.10", | ||
"@babel/plugin-proposal-class-properties": "^7.12.1", | ||
"@babel/plugin-proposal-export-default-from": "^7.12.1", | ||
"@babel/plugin-transform-runtime": "^7.12.1", | ||
"@babel/preset-env": "^7.12.7", | ||
"@babel/preset-react": "^7.12.10", | ||
"@svgr/webpack": "^5.5.0", | ||
"babel-loader": "^8.2.2", | ||
"clean-webpack-plugin": "^3.0.0", | ||
"copy-webpack-plugin": "^7.0.0", | ||
"css-loader": "^3.6.0", | ||
"html-webpack-plugin": "4.5.0", | ||
"json-loader": "^0.5.7", | ||
"serve": "11.3.2", | ||
"source-map-loader": "^1.1.2", | ||
"style-loader": "1.2.1", | ||
"webpack": "5.14.0", | ||
"webpack-cli": "4.5.0", | ||
"webpack-dev-server": "3.11.2", | ||
"workbox-webpack-plugin": "^6.1.1" | ||
}, | ||
"dependencies": { | ||
"@babel/runtime": "^7.12.5", | ||
"attr-accept": "^2.2.2", | ||
"axios": "^0.21.0", | ||
"email-addresses": "^3.1.0", | ||
"i18next": "^19.8.4", | ||
"i18next-http-backend": "^1.1.0", | ||
"mobx": "^6.1.1", | ||
"mobx-react": "^7.1.0", | ||
"moment": "^2.29.1", | ||
"copy-to-clipboard": "^3.2.0", | ||
"fast-deep-equal": "^3.1.3", | ||
"prop-types": "^15.7.2", | ||
"rc-tree": "^2.1.4", | ||
"re-resizable": "^6.9.0", | ||
"react": "^17.0.1", | ||
"react-autosize-textarea": "^7.1.0", | ||
"react-content-loader": "^5.1.4", | ||
"react-custom-scrollbars": "^4.2.1", | ||
"react-device-detect": "^1.14.0", | ||
"react-dom": "^17.0.1", | ||
"react-dropzone": "^11.2.4", | ||
"react-i18next": "^11.7.3", | ||
"react-hammerjs": "^1.0.1", | ||
"react-onclickoutside": "^6.9.0", | ||
"react-player": "^1.15.3", | ||
"react-resize-detector": "^5.2.0", | ||
"react-router": "^5.2.0", | ||
"react-router-dom": "^5.2.0", | ||
"react-string-format": "^0.1.0", | ||
"react-svg": "^12.0.0", | ||
"react-text-mask": "^5.4.3", | ||
"react-toastify": "^6.1.0", | ||
"react-tooltip": "^4.2.11", | ||
"react-viewer": "^3.2.2", | ||
"react-virtualized-auto-sizer": "^1.0.2", | ||
"react-window": "^1.8.6", | ||
"react-window-infinite-loader": "^1.0.5", | ||
"resize-image": "^0.1.0", | ||
"sass": "^1.29.0", | ||
"sass-loader": "^10.1.0", | ||
"sjcl": "^1.0.8", | ||
"screenfull": "^5.1.0", | ||
"styled-components": "^5.2.1", | ||
"workbox-window": "^6.1.1" | ||
} | ||
} |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.