-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/gh-pages' into skottmckay-nnapi-…
…supported-ops
- Loading branch information
Showing
23 changed files
with
505 additions
and
290 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,33 @@ | ||
--- | ||
nav_exclude: true | ||
--- | ||
## Developing | ||
|
||
Once you've installed dependencies with `npm install` (or `yarn`), start a development server with hot-reload enabled: | ||
|
||
```bash | ||
npm run dev | ||
|
||
# or start the server and open the app in a new browser tab | ||
npm run dev -- --open | ||
``` | ||
All working pages are in `src/routes/[page url]/+page.svelte`, which is where you can make your edits. | ||
|
||
### Technologies & relevant docs | ||
Please use the docs pages below to aid in your development process. As a general target, we should be using zero CSS, as daisyUI (framework with components) and tailwindcss (css classes) should be able to handle all of our styling needs. | ||
- [Svelte](https://svelte.dev/) | ||
- daisyUI [docs](https://daisyui.com/) | ||
- tailwindcss [docs](https://tailwindcss.com/docs) | ||
|
||
|
||
## Building | ||
|
||
To create a production version of your app: | ||
|
||
```bash | ||
npm run build | ||
``` | ||
|
||
You can preview the production build with `npm run preview`. | ||
|
||
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment. |
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,32 @@ | ||
<meta property="og:image" content="/images/logos/onnxruntime/ORT_icon_for_light_bg.png" /> | ||
|
||
<script | ||
type="text/javascript" | ||
src="https://js.monitor.azure.com/scripts/c/ms.analytics-web-3.min.js" | ||
></script> | ||
|
||
<script type="text/javascript"> | ||
const config = { | ||
instrumentationKey: | ||
'360b0e675e0044398fd28c8bdf711b8e-1fe5434d-ee99-4837-99cc-a3a16462d82d-7262', | ||
channelConfiguration: { | ||
eventsLimitInMem: 50 | ||
}, | ||
propertyConfiguration: { | ||
env: 'PROD' | ||
}, | ||
webAnalyticsConfiguration: { | ||
autoCapture: { | ||
scroll: true, | ||
pageView: true, | ||
onLoad: true, | ||
onUnload: true, | ||
click: true, | ||
resize: true, | ||
jsError: true | ||
} | ||
} | ||
}; | ||
const analytics = new oneDS.ApplicationInsights(); | ||
analytics.initialize(config, []); | ||
</script> |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.