Removed prebuilt-ui references

This commit is contained in:
Kimberlee Johnson 2021-09-17 08:59:44 -07:00
parent d0f6a9e211
commit 54def961ae
6 changed files with 7 additions and 7 deletions

View File

@ -14,7 +14,7 @@ Thank you for looking into contributing to`daily-demos`! We want these projects
## Before contributing
### Run prebuilt-ui locally
### Run /prebuilt locally
Please follow the instructions in `README.md`.

View File

@ -22,7 +22,7 @@ Please note: these demos are intended as educational resources for using the Dai
Examples that showcase the Daily call object using our Javascript library
## [Prebuilt UI](./prebuilt-ui)
## [Prebuilt UI](./prebuilt)
Examples that showcase using and customizing the Daily Prebuilt UI

View File

@ -5,8 +5,8 @@
"license": "MIT",
"private": true,
"workspaces": [
"custom/*",
"prebuilt-ui/*"
"dailyjs/*",
"prebuilt/*"
],
"engines": {
"node": ">=0.12"

View File

@ -16,7 +16,7 @@ You can also paste an existing Daily room into the input. The room URL should be
1. Copy .env.example and change it to an .env.local with your own DAILY_API_KEY and DAILY_DOMAIN
2. `cd basic-embed`
3. yarn
4. yarn workspace @prebuilt-ui/basic-embed dev
4. yarn workspace @prebuilt/basic-embed dev
Or...

View File

@ -15,7 +15,7 @@ export default function Index({ isConfigured = false }) {
<Header
demoTitle={'Daily Prebuilt demo'}
repoLink={
'https://github.com/daily-demos/examples/tree/main/prebuilt-ui/basic-embed'
'https://github.com/daily-demos/examples/tree/main/prebuilt/basic-embed'
}
/>
<main>

View File

@ -10,7 +10,7 @@
## Getting started
- Clone this repository and navigate to this folder (`git clone git@github.com:daily-demos/examples.git && cd prebuilt-ui/chat-overlay`)
- Clone this repository and navigate to this folder (`git clone git@github.com:daily-demos/examples.git && cd prebuilt/chat-overlay`)
- Set `ROOM_URL` on the first line of `main.js` to a Daily room you have created. Sign up and create a room from the [Daily dashboard](https://dashboard.daily.co/signup), if you haven't already!
- Run a server from this repo's directory. You can use something like `python -m SimpleHTTPServer` run on the command line in the repo's directory or use VSCode's Live Server extension. See [How do you set up a local testing server?](https://developer.mozilla.org/en-US/docs/Learn/Common_questions/set_up_a_local_testing_server) for more info.
- Register for a Daily.co account and create a Room [in the dashboard](https://dashboard.daily.co/rooms), and use that room URL on this page. You can join that room directly using other browser tabs or another device.