Skip to content

Commit 2d765b0

Browse files
committed
initial commit
0 parents  commit 2d765b0

10 files changed

+6642
-0
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock.json binary

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
build/
2+
3+
node_modules/
4+
debug.log
5+
npm-debug.log
6+
7+
*.sublime-workspace
8+
.idea

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License
2+
3+
Copyright (c) 2019 - now, Mol* contributors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

README.md

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
[![License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](./LICENSE)
2+
[![npm version](https://badge.fury.io/js/molrender.svg)](https://www.npmjs.com/package/molrender)
3+
[![Gitter](https://badges.gitter.im/molstar/Lobby.svg)](https://gitter.im/molstar/Lobby)
4+
5+
## Usage
6+
7+
### Create image
8+
molrender
9+
10+
## Building
11+
12+
### Build:
13+
npm install
14+
npm run build
15+
16+
### Build automatically on file save:
17+
npm run watch
18+
19+
### Build with debug mode enabled:
20+
DEBUG=molstar npm run watch
21+
22+
### Build for production:
23+
NODE_ENV=production npm run build
24+
25+
### Scripts installation
26+
npm run build
27+
npm install -g
28+
29+
## Publish
30+
31+
## Prerelease
32+
npm version prerelease # asumes the current version ends with '-dev.X'
33+
npm publish --tag next
34+
35+
## Release
36+
npm version 0.X.0 # provide valid semver string
37+
npm publish
38+
39+
## Contributing
40+
Just open an issue or make a pull request. All contributions are welcome.
41+
42+
## Funding
43+
Funding sources include but are not limited to:
44+
* [RCSB PDB](https://www.rcsb.org) funding by a grant [DBI-1338415; PI: SK Burley] from the NSF, the NIH, and the US DoE
45+
* [PDBe, EMBL-EBI](https://pdbe.org)
46+
* [CEITEC](https://www.ceitec.eu/)

0 commit comments

Comments
 (0)