Skip to content
This repository was archived by the owner on Apr 6, 2021. It is now read-only.

Commit 5d196a9

Browse files
committed
Prepare public release
1 parent cfff640 commit 5d196a9

File tree

7 files changed

+240
-4
lines changed

7 files changed

+240
-4
lines changed

CODE_OF_CONDUCT.md

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
Code of Conduct
2+
===============
3+
4+
## Our Pledge
5+
6+
In the interest of fostering an open and welcoming environment, we as
7+
contributors and maintainers pledge to making participation in our project and
8+
our community a harassment-free experience for everyone, regardless of age, body
9+
size, disability, ethnicity, gender identity and expression, level of experience,
10+
nationality, personal appearance, race, religion, or sexual identity and
11+
orientation.
12+
13+
## Our Standards
14+
15+
Examples of behavior that contributes to creating a positive environment
16+
include:
17+
18+
* Using welcoming and inclusive language
19+
* Being respectful of differing viewpoints and experiences
20+
* Gracefully accepting constructive criticism
21+
* Focusing on what is best for the community
22+
* Showing empathy towards other community members
23+
24+
Examples of unacceptable behavior by participants include:
25+
26+
* The use of sexualized language or imagery and unwelcome sexual attention or
27+
advances
28+
* Trolling, insulting/derogatory comments, and personal or political attacks
29+
* Public or private harassment
30+
* Publishing others' private information, such as a physical or electronic
31+
address, without explicit permission
32+
* Other conduct which could reasonably be considered inappropriate in a
33+
professional setting
34+
35+
## Our Responsibilities
36+
37+
Project maintainers are responsible for clarifying the standards of acceptable
38+
behavior and are expected to take appropriate and fair corrective action in
39+
response to any instances of unacceptable behavior.
40+
41+
Project maintainers have the right and responsibility to remove, edit, or
42+
reject comments, commits, code, wiki edits, issues, and other contributions
43+
that are not aligned to this Code of Conduct, or to ban temporarily or
44+
permanently any contributor for other behaviors that they deem inappropriate,
45+
threatening, offensive, or harmful.
46+
47+
## Scope
48+
49+
This Code of Conduct applies both within project spaces and in public spaces
50+
when an individual is representing the project or its community. Examples of
51+
representing a project or community include using an official project e-mail
52+
address, posting via an official social media account, or acting as an appointed
53+
representative at an online or offline event. Representation of a project may be
54+
further defined and clarified by project maintainers.
55+
56+
## Enforcement
57+
58+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
59+
reported by contacting the project team at [email protected]. All
60+
complaints will be reviewed and investigated and will result in a response that
61+
is deemed necessary and appropriate to the circumstances. The project team is
62+
obligated to maintain confidentiality with regard to the reporter of an incident.
63+
Further details of specific enforcement policies may be posted separately.
64+
65+
Project maintainers who do not follow or enforce the Code of Conduct in good
66+
faith may face temporary or permanent repercussions as determined by other
67+
members of the project's leadership.
68+
69+
## Attribution
70+
71+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
72+
available at [http://contributor-covenant.org/version/1/4][version]
73+
74+
[homepage]: http://contributor-covenant.org
75+
[version]: http://contributor-covenant.org/version/1/4/

CONTRIBUTING.md

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
Contributing Guidelines
2+
=======================
3+
4+
First of all, **thank you** for contributing, **you are awesome**!
5+
6+
Before starting to contribute, you should read the following:
7+
8+
* [How to contribute?](#how-to-contribute)
9+
* [Pull Request Guidelines](#pull-request-guidelines)
10+
* [Code of Conduct](CODE_OF_CONDUCT.md)
11+
12+
---
13+
14+
## How to contribute?
15+
16+
### Report Bugs
17+
18+
Report bugs at https://github.com/TailorDev/franklin/issues/new.
19+
20+
When reporting a bug, please include:
21+
22+
- Any details about your local setup that might be helpful in
23+
troubleshooting;
24+
- Detailed steps to reproduce the bug. When possible, please
25+
write a test case.
26+
27+
### Fix Bugs
28+
29+
Check out the [open bugs](https://github.com/TailorDev/franklin/issues) -
30+
anything tagged with the **[easy pick]** label could be a good choice
31+
for newcomers (and we are willing to help you).
32+
33+
### Implement Features
34+
35+
Look through the GitHub issues for features. Anything tagged with
36+
**[enhancement]** is open to whoever wants to implement it.
37+
38+
### Submit Feedback
39+
40+
Any issue with the **[question]** label is open for feedback, so feel
41+
free to share your thoughts with us!
42+
43+
The best way to send feedback is to [fill a new
44+
issue](https://github.com/TailorDev/franklin/issues/new) on GitHub.
45+
46+
If you are proposing a feature:
47+
48+
- Explain how you envision it working. Try to be as detailed as you
49+
can;
50+
- Try to keep the scope as narrow as possible. This will help make it
51+
easier to implement;
52+
- Feel free to include any code you might already have, even if it's
53+
just a rough idea. This is a volunteer-driven project, and
54+
contributions are welcome :)
55+
56+
57+
## Pull Request Guidelines
58+
59+
Here are a few rules to follow in order to ease code reviews, and discussions before
60+
maintainers accept and merge your work:
61+
62+
- you MUST run the test suite;
63+
- you MUST write (or update) unit tests;
64+
- you SHOULD write documentation.
65+
66+
Please, write [commit messages that make
67+
sense](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html),
68+
and [rebase your branch](http://git-scm.com/book/en/Git-Branching-Rebasing)
69+
before submitting your Pull Request.
70+
71+
One may ask you to [squash your
72+
commits](http://gitready.com/advanced/2009/02/10/squashing-commits-with-rebase.html)
73+
too. This is used to "clean" your Pull Request before merging it (we don't want
74+
commits such as `fix tests`, `fix 2`, `fix 3`, etc.).
75+
76+
Also, while creating your Pull Request on GitHub, you MUST write a description
77+
which gives the context and/or explains why you are creating it.
78+
79+
Thank you!

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) TailorDev
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 all
13+
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 THE
21+
SOFTWARE.

README.md

Lines changed: 63 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,66 @@
11
Franklin
22
========
33

4-
[![CircleCI](https://circleci.com/gh/TailorDev/franklin.svg?style=svg&circle-token=239258011bb36afbdc97d74ac5d842e1426acaa7)](https://circleci.com/gh/TailorDev/franklin)
4+
[![CircleCI](https://circleci.com/gh/TailorDev/franklin.svg?style=svg)](https://circleci.com/gh/TailorDev/franklin)
5+
6+
Franklin is a DNA sequence annotation tool we built at TailorDev in order to
7+
play with SVGs and [React](https://facebook.github.io/react/) (again), as part
8+
of our "Le lab" sessions:
9+
10+
* https://tailordev.fr/blog/2016/06/09/le-lab-3-franklin-dna-sequence-annotation-tool/
11+
12+
![](doc/franklin-snapshot.jpg)
13+
14+
15+
## Installation
16+
17+
### Production
18+
19+
$ git clone https://github.com/TailorDev/franklin.git
20+
$ npm install # will run `npm run build`
21+
$ npm prune --production
22+
23+
We use this
24+
[Dockerfile](https://github.com/TailorDev/dockerfiles/blob/master/node/Dockerfile)
25+
to run franklin in production (which runs `npm run start` from franklin root
26+
directory).
27+
28+
### Development
29+
30+
$ git clone https://github.com/TailorDev/franklin.git
31+
$ npm install
32+
$ npm run dev
33+
34+
35+
## Requirements
36+
37+
We use `node` 5.8+ and `npm` 3.7+.
38+
39+
40+
## Contributing
41+
42+
Please, see [CONTRIBUTING](CONTRIBUTING.md) file.
43+
44+
## Running the Tests
45+
46+
$ npm run test
47+
48+
You can also "watch" them:
49+
50+
$ npm run test:watch
51+
52+
Code coverage is available by running:
53+
54+
$ npm run cov
55+
56+
57+
## Contributor Code of Conduct
58+
59+
Please note that this project is released with a [Contributor Code of
60+
Conduct](http://contributor-covenant.org/). By participating in this project you
61+
agree to abide by its terms. See [CODE_OF_CONDUCT](CODE_OF_CONDUCT.md) file.
62+
63+
## License
64+
65+
Franklin is released under the MIT License. See the bundled
66+
[LICENSE](LICENSE.md) file for details.

app/scss/main.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
$fa-font-path: '~font-awesome/fonts';
1616
@import '~font-awesome/scss/font-awesome.scss';
1717

18-
/* -- Monod styles -- */
18+
/* -- Franklin styles -- */
1919

2020
// Application
2121
@import 'mixins';

doc/franklin-snapshot.jpg

118 KB
Loading

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
{
22
"name": "franklin",
33
"version": "1.0.0",
4-
"private": true,
54
"repository": "https://github.com/TailorDev/franklin",
65
"author": "TailorDev SAS",
76
"license": "MIT",
8-
"description": "",
7+
"description": "TailorDev's DNA sequence tool",
98
"main": "server.js",
109
"scripts": {
1110
"build": "NODE_ENV=production webpack",

0 commit comments

Comments
 (0)