Skip to content
This repository was archived by the owner on Aug 18, 2024. It is now read-only.

Commit 0e1ddcf

Browse files
authored
Merge pull request #56 from EtherealEngine/project-orgnames
project-orgnames
2 parents 421e4f8 + 863f07c commit 0e1ddcf

File tree

13 files changed

+16
-15
lines changed

13 files changed

+16
-15
lines changed

.github/workflows/project-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Checkout Project
2626
uses: actions/checkout@v3
2727
with:
28-
path: './packages/projects/projects/${{ github.event.repository.name }}'
28+
path: './packages/projects/projects/etherealengine/${{ github.event.repository.name }}'
2929
- name: Use Node.js
3030
uses: actions/setup-node@v3
3131
with:

devtool/js/emulatedDevice.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import { generateUUID } from 'three/src/math/MathUtils.js';
2424
import { updateUserObjects } from './messenger';
2525

2626
import config from '@etherealengine/common/src/config';
27-
const assetURL = config.client.fileServer + '/projects/ee-bot/devtool'
27+
const assetURL = config.client.fileServer + '/projects/etherealengine/ee-bot/devtool'
2828

2929
const SELECTION_MOUSE_DOWN_THRESHOLD = 300;
3030

devtool/jsx/controllers.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import {
2020
} from '../js/messenger';
2121
import config from '@etherealengine/common/src/config';
2222

23-
const assetURL = config.client.fileServer + '/projects/ee-bot/devtool'
23+
const assetURL = config.client.fileServer + '/projects/etherealengine/ee-bot/devtool'
2424

2525
import { Joystick } from '../js/joystick';
2626
import React from 'react';

devtool/jsx/hands.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import React from 'react';
1717
import { createAnalogPressFunction } from './controllers.jsx';
1818

1919
import config from '@etherealengine/common/src/config';
20-
const assetURL = config.client.fileServer + '/projects/ee-bot/devtool'
20+
const assetURL = config.client.fileServer + '/projects/etherealengine/ee-bot/devtool'
2121

2222

2323
export default function HandPanel({ deviceKey, device }) {

devtool/jsx/headset.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import {
1515
} from '../js/messenger';
1616
import config from '@etherealengine/common/src/config';
1717

18-
const assetURL = config.client.fileServer + '/projects/ee-bot/devtool'
18+
const assetURL = config.client.fileServer + '/projects/etherealengine/ee-bot/devtool'
1919

2020
import { DEVICE_DEFINITIONS } from '../js/devices';
2121
import { EmulatorSettings } from '../js/emulatorStates';

devtool/jsx/inspector.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import React from 'react';
1818
import { changeRoomDimension } from '../js/messenger';
1919

2020
import config from '@etherealengine/common/src/config';
21-
const assetURL = config.client.fileServer + '/projects/ee-bot/devtool'
21+
const assetURL = config.client.fileServer + '/projects/etherealengine/ee-bot/devtool'
2222

2323
export default function Inspector({ device, inputMode }) {
2424
const sceneContainerRef = React.useRef();

devtool/jsx/pose.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import initKeyboardControl from '../js/keyboard';
1414

1515

1616
import config from '@etherealengine/common/src/config';
17-
const assetURL = config.client.fileServer + '/projects/ee-bot/devtool'
17+
const assetURL = config.client.fileServer + '/projects/etherealengine/ee-bot/devtool'
1818

1919
export default function PoseBar({ device, setInputMode }) {
2020
const saveDefaultPoseRef = React.useRef();

dockerfiles/bot/Dockerfile-bot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ WORKDIR /app
1616

1717
COPY --from=builder /app ./
1818
#Clone the repository and install dependecies
19-
WORKDIR /app/packages/projects/projects/ee-bot
19+
WORKDIR /app/packages/projects/projects/etherealengine/ee-bot
2020
RUN git clone "https://github.com/SYBIOTE/ee-bot" .
2121
RUN npm install
2222
# run API

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "ee-bot",
2+
"name": "etherealengine/ee-bot",
33
"version": "0.0.0",
44
"engineVersion": "1.6.0",
55
"description": "A test bot using puppeteer"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "ee-bot",
2+
"name": "@etherealengine/ee-bot",
33
"version": "0.5.8",
44
"description": "A test bot using puppeteer",
55
"repository": {

0 commit comments

Comments
 (0)