Switched client from submodule to included
This commit is contained in:
commit
98819403b3
68 changed files with 22018 additions and 5 deletions
41
openflexure_microscope/api/static/README.md
Normal file
41
openflexure_microscope/api/static/README.md
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
# OpenFlexure Microscope JS Client
|
||||
[](https://gitlab.com/openflexure/openflexure-microscope-jsclient/commits/master)
|
||||
|
||||
A user client for the OpenFlexure Microscope, written in Vue.js.
|
||||
|
||||
## Install
|
||||
|
||||
A general guide on setting up your microscope can be found [here on our website](https://www.openflexure.org/projects/microscope/).
|
||||
|
||||
## Develop
|
||||
* Clone the repo, and run `npm install`
|
||||
* Scripts to build and serve are included in `package.json`
|
||||
|
||||
## Developer notes
|
||||
|
||||
### VS Code and ESLint
|
||||
|
||||
To prevent the editor from interfering with ESLint, add to your project `settings.json `:
|
||||
|
||||
```
|
||||
{
|
||||
"editor.tabSize": 2,
|
||||
"cSpell.enabled": false,
|
||||
"eslint.validate": [{
|
||||
"language": "vue",
|
||||
"autoFix": true
|
||||
},
|
||||
{
|
||||
"language": "javascript",
|
||||
"autoFix": true
|
||||
},
|
||||
{
|
||||
"language": "javascriptreact",
|
||||
"autoFix": true
|
||||
}
|
||||
],
|
||||
"eslint.autoFixOnSave": true,
|
||||
"editor.formatOnSave": false,
|
||||
"vetur.validation.template": false
|
||||
}
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue