Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate groups-react and workspaces-react templates to use vite #23

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@ yarn-error.log*
e2e/config/gtf.js
e2e/config/apps/libs/*
e2e/tests/temp-test-collection/

*/tsconfig.tsbuildinfo
2 changes: 1 addition & 1 deletion groups-react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ For an **io.Connect Desktop** project, **io.Connect Desktop** 9.0 or newer is re

- Run `npm install` to install all dependencies.
- Run `npm run start` to start the app.
- Open the `webGroup.json` definition file located in the `%LocalAppData%\interop.io\io.Connect Desktop\Desktop\config\apps` folder, set the `"disabled"` property to `false`, and set the `"url"` property of the `"details"` top-level key to the location of your Web Group App (the default is `http://localhost:3000`).
- Open the `webGroup.json` definition file located in the `%LocalAppData%\interop.io\io.Connect Desktop\Desktop\config\apps` folder, set the `"disabled"` property to `false`, and set the `"url"` property of the `"details"` top-level key to the location of your Web Group App (the default is `http://localhost:5173`).
- Set the `"groupType"` property of the `stickywindows.json` file located in `%LocalAppData%\interop.io\io.Connect Desktop\Desktop\config` to `"Web"`.
- Start **io.Connect Desktop** to start using and modifying your Web Group App.
18 changes: 18 additions & 0 deletions groups-react/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!doctype html>
<html lang="en" style="height: 100%;">

<head>
<meta charset="utf-8" />
<link rel="shortcut icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="theme-color" content="#000000" />
<link rel="manifest" href="/manifest.json" />
<title>{{name}}</title>
</head>

<body style="overflow: hidden; margin: 0px; height: 100%; width: 100%;">
<div id="root" style="display: flex; flex-direction: row; overflow: hidden; height: 100%; width: 100%;"></div>
<script type="module" src="/src/index.tsx"></script>
</body>

</html>
Loading
Loading