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

Update README.md #487

Open
wants to merge 7 commits into
base: webpack-build
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,10 @@
"type": "firefox",
"request": "launch",
"name": "vuejs: firefox",
"url": "http://localhost:8080",
"url": "http://localhost:8081",
"webRoot": "${workspaceFolder}/src",
"tmpDir": "/home/ericx/Desktop/FirefoxTemp",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use relative path directories to ensure that paths don't get broken

"pathMappings": [
{
"url": "webpack:///src/services/theme/utils.ts",
"path": "git:/Users/krishna/CIDAR/3duf-vue-port/src/cc/hardware/utils.ts?%7B%22path%22%3A%22%2FUsers%2Fkrishna%2FCIDAR%2F3duf-vue-port%2Fsrc%2Fcc%2Fhardware%2Futils.ts%22%2C%22ref%22%3A%22%22%7D"
},
{
"url": "webpack:///src/",
"path": "${webRoot}/"
Expand Down
7 changes: 5 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@
},
"cSpell.words": ["registryref"],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why did you change this ?

},
"rpc.enabled": true
"rpc.enabled": true,
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
}
}
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ The design of microfluidic Lab on a Chip (LoC) systems is an onerous task requir

[Instructions for installation, build, and test are in the wiki.](https://github.com/CIDARLAB/3DuF/wiki/Building-and-Testing-3DuF)

For webpack-build run:
```
npm ci
npm run vue-serve
```

### Selecting and Configuring Feature Types

Use the buttons in the menu (on the left) to select a feature type to place.
Expand Down Expand Up @@ -84,7 +90,7 @@ This will enable the API on port 6060. This can be verified by either going to `
curl http://localhost:6060
```

Alternatively you can install the dev version of the library if you want to debug it locally.
Alternatively you can install the dev version of the library if you want to debug it locally. (Primitives Server)

```
npm ci
Expand Down
13 changes: 13 additions & 0 deletions launch.json
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this a duplicate file ?

Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "firefox",
"request": "launch",
"name": "Launch Firefox against localhost",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
}
]
}

Loading
Loading