Skip to content

Commit 5f36f46

Browse files
authored
docs: add standard public repository info (#47)
* docs: add standard public repository info * chore: point workflow to main branch
1 parent f70dbd2 commit 5f36f46

File tree

5 files changed

+184
-4
lines changed

5 files changed

+184
-4
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: CI
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [ main ]
66
pull_request:
7-
branches: [ master ]
7+
branches: [ main ]
88

99
jobs:
1010
build:

CODE_OF_CONDUCT.md

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

CONTRIBUTING.md

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# Contributing
2+
3+
Contributions to this library are welcome.
4+
5+
- If you want to report a bug or ask for features, you can check the [Issues page](https://github.com/fetchai/jenesis/issues) and raise an issue.
6+
7+
- If you would like to contribute a bug fix or feature then [submit a Pull request](https://github.com/fetchai/jenesis/pulls).
8+
9+
Before reading on, please have a look at the [code of conduct](CODE_OF_CONDUCT.md).
10+
11+
## A few simple rules
12+
13+
- Before working on a feature, reach out to one of the core developers or discuss the feature in an issue. The framework caters a diverse audience and new features require upfront coordination.
14+
15+
- Include unit tests when you contribute new features, as they help to a) prove that your code works correctly, and b) guard against future breaking changes to lower the maintenance cost.
16+
17+
- Bug fixes also generally require unit tests, because the presence of bugs usually indicates insufficient test coverage.
18+
19+
- Keep API compatibility in mind when you change code in `jenesis`. Above version `1.0.0`, breaking changes can happen across versions with different left digit. Below version `1.0.0`, they can happen across versions with different middle digit. Reviewers of your pull request will comment on any API compatibility issues.
20+
21+
- When you contribute a new feature to `jenesis`, the maintenance burden is transferred to the core team. This means that the benefit of the contribution must be compared against the cost of maintaining the feature.
22+
23+
- Where possible, extend existing features instead of replacing one.
24+
25+
- Before committing and opening a PR, run all tests locally. This saves CI hours and ensures you only commit clean code.
26+
27+
## Contributing code
28+
29+
If you have improvements, send us your pull requests!
30+
31+
A team member will be assigned to review your pull requests. All tests are run as part of CI as well as various other checks (linters, static type checkers, security checkers, etc). If there are any problems, feedback is provided via GitHub. Once the pull requests is approved and passes continuous integration checks, you or a team member can merge it.
32+
33+
If you want to contribute, start working through the codebase, navigate to the Github [Issues page](https://github.com/fetchai/jenesis/issues) tab and start looking through interesting issues. If you decide to start on an issue, leave a comment so that other people know that you're working on it. If you want to help out, but not alone, use the issue comment thread to coordinate.
34+
35+
## Commits and PRs
36+
37+
This project uses Conventional Commits to generate release notes and to determine versioning. Commit messages should adhere to this standard and be of the form:
38+
39+
```bash
40+
git commit -m "feat: add new feature x"
41+
git commit -m "fix: fix bug in feature x"
42+
git commit -m "docs: add documentation for feature x"
43+
git commit -m "test: add test suite for feature x"
44+
```
45+
46+
Further details on `conventional commits` can be found here: <https://www.conventionalcommits.org/en/v1.0.0/>
47+
48+
When merging a branch, PRs should be squashed into one conventional commit by selecting the `Squash and merge` option. This ensures Release notes are useful and readable when releases are created.
49+
50+
<!-- ![alt text](https://docs.github.com/assets/images/help/pull_requests/select-squash-and-merge-from-drop-down-menu.png) -->
51+
<img src="https://docs.github.com/assets/images/help/pull_requests/select-squash-and-merge-from-drop-down-menu.png" alt="drawing" style="width:600px;"/>

DEVELOPING.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
## Development setup
2+
3+
The easiest way to get set up for development is to install Python `>=3.7` and [poetry](https://pypi.org/project/poetry/), and then run the following from the top-level project directory:
4+
5+
```bash
6+
poetry install
7+
poetry shell
8+
```
9+
10+
## Development commands
11+
12+
There are various makefile commands that help the development. Some of them are:
13+
14+
- To run lint checks:
15+
16+
```bash
17+
pylint
18+
```
19+
20+
- To run tests:
21+
22+
```bash
23+
pytest
24+
```
25+
26+
Before committing and opening a PR, use the above commands to run the checks locally. This saves CI hours and ensures you only commit clean code.

README.md

+29-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1-
# Fetch.ai CLI
1+
Jenesis is a command line tool for rapid contract and service development for CosmWasm-enabled blockchains.
22

3-
An initial prototype for a command line tool for rapid contract and service development
3+
# Installation
4+
5+
Install jenesis for Python 3.7 or newer via PyPI:
6+
7+
```
8+
pip install jenesis
9+
```
10+
11+
# Getting started
12+
13+
## Create a new project
14+
15+
```
16+
jenesis new my_project
17+
```
18+
19+
## Initialize jenesis in an existing project directory
20+
21+
```
22+
jenesis init
23+
```
24+
25+
## Compile contracts
26+
27+
28+
```
29+
jenesis compile
30+
```

0 commit comments

Comments
 (0)