Skip to content

Commit

Permalink
Add notes for the new lead maintainer of the open-source iris project…
Browse files Browse the repository at this point in the history
… and align with @get-ion/ion by @hiveminded

Former-commit-id: da4f38eb9034daa49446df3ee529423b98f9b331
  • Loading branch information
kataras committed Jul 10, 2017
1 parent 2d4c277 commit 9f85b74
Show file tree
Hide file tree
Showing 344 changed files with 4,824 additions and 5,156 deletions.
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*.go linguist-language=Go
vendor/* linguist-vendored
_examples/* linguist-documentation
6 changes: 6 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# These owners will be the default owners for everything in the repo.
* @kataras
*.go @hiveminded @kataras
*.md @hiveminded @kataras
*.html @hiveminded @kataras
*.css @hiveminded @kataras
75 changes: 74 additions & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1 +1,74 @@
Please navigate through https://github.com/iris-contrib/community-board first to read how you can contribute. You're awesome!
# Contributor Covenant Code of Conduct

## Our Pledge

In the interest of fostering an open and welcoming environment, we as
contributors and maintainers pledge to making participation in our project and
our community a harassment-free experience for everyone, regardless of age, body
size, disability, ethnicity, gender identity and expression, level of experience,
nationality, personal appearance, race, religion, or sexual identity and
orientation.

## Our Standards

Examples of behavior that contributes to creating a positive environment
include:

* Using welcoming and inclusive language
* Being respectful of differing viewpoints and experiences
* Gracefully accepting constructive criticism
* Focusing on what is best for the community
* Showing empathy towards other community members

Examples of unacceptable behavior by participants include:

* The use of sexualized language or imagery and unwelcome sexual attention or
advances
* Trolling, insulting/derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or electronic
address, without explicit permission
* Other conduct which could reasonably be considered inappropriate in a
professional setting

## Our Responsibilities

Project maintainers are responsible for clarifying the standards of acceptable
behavior and are expected to take appropriate and fair corrective action in
response to any instances of unacceptable behavior.

Project maintainers have the right and responsibility to remove, edit, or
reject comments, commits, code, wiki edits, issues, and other contributions
that are not aligned to this Code of Conduct, or to ban temporarily or
permanently any contributor for other behaviors that they deem inappropriate,
threatening, offensive, or harmful.

## Scope

This Code of Conduct applies both within project spaces and in public spaces
when an individual is representing the project or its community. Examples of
representing a project or community include using an official project e-mail
address, posting via an official social media account, or acting as an appointed
representative at an online or offline event. Representation of a project may be
further defined and clarified by project maintainers.

## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at [email protected]. All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an incident.
Further details of specific enforcement policies may be posted separately.

Project maintainers who do not follow or enforce the Code of Conduct in good
faith may face temporary or permanent repercussions as determined by other
members of the project's leadership.

## Attribution

This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
available at [http://contributor-covenant.org/version/1/4][version]

[homepage]: http://contributor-covenant.org
[version]: http://contributor-covenant.org/version/1/4/
7 changes: 2 additions & 5 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
**Do not create** issues or proposals neither request features **here**.

Navigate to the https://github.com/iris-contrib/community-board instead.

[FAQ](https://github.com/iris-contrib/community-board#community-board)
Documentation for the _iris_ project can be found at
<https://github.com/kataras/iris#-learn>.
8 changes: 2 additions & 6 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
I'd love to see more contributions!
We'd love to see contributions!!!

Please read [how to create a Proposal](https://github.com/iris-contrib/community-board#creating-a-proposal) first, PR may be rejected if it's not designed as it should.

If you are interested in contributing to the Iris project, please take a time to read and understand the [Code of Conduct](https://github.com/iris-contrib/community-board/blob/master/CODE-OF-CONDUCT.md) before submitting your [PR](https://github.com/kataras/iris/pulls), this is how we make Go great.

Thanks!
Please attach an [issue](http://support.iris-go.com) link which your PR solves otherwise your work may be rejected.
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +0,0 @@
# my own configuration for vs code, my lovely editor, if someone of you want this, contact with me
.vscode
# turn off these for now
specs
38 changes: 23 additions & 15 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,30 @@ os:
- osx
go:
- go1.8
- tip
go_import_path: github.com/kataras/iris
install:
- go get ./...
# install test dependencies
# - go get golang.org/x/tools/cmd/cover
# - go get -v github.com/axw/gocov
# - go install github.com/axw/gocov/gocov
- go get ./... # for iris-contrib/httpexpect
script:
# - gocov test | gocov report
# the result of gocov is invalid because it tests the vendor too,
# which its tests are removed to reduce the dl size.
# When I'll push my internal tests to github I'll do it
# to do the test coverage all folders except vendor.
# For now keep it commented.
# - cd ./_examples
# - go get ./...
# - go test -v -cover ./...
# - cd ./...
- go test -v -cover ./...
after_script:
# examples
- cd ./_examples
- go get ./...
- go test -v -cover ./...
# cache examples
- cd ../cache/_examples
- go get ./...
- go test -v -cover ./...
# sessions examples
- cd ../../sessions/_examples
- go get ./...
- go test -v -cover ./...
# websocket examples
- cd ../../websocket/_examples
- go get ./...
- go test -v -cover ./...
# typescript examples
- cd ../../typescript/_examples
- go get ./...
- go test -v -cover ./...
89 changes: 89 additions & 0 deletions ACQUIRED_HISTORY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
# 10 July 2017

## 📈 One and a half years with Iris and You...

- 7070 github stars
- 749 github forks
- 1m total views at its documentation
- ~800$ at donations (there're a lot for a golang open-source project, thanks to you)
- ~550 reported bugs fixed
- ~30 community feature requests have been implemented

## 🔥 Reborn

As you may have heard I have huge responsibilities on my new position at Dubai nowdays, therefore I don't have the needed time to work on this project anymore.

After almost a month of negotiations and searching I succeed to find a decent software engineer to continue my work on the open source community.

The leadership of this, open-source, repository was transfered to [hiveminded](https://github.com/hiveminded).

These types of projects need heart and sacrifices to continue offer the best developer experience like a paid software, please do support him as you did with me!

# 02 July 2017

### DEPRECATED

Iris has been acquired so development is up to the community, there are two active iris-based communities so far.

Use one of these projects instead:

https://github.com/get-ion/ion

**Ion is a fast, simple and efficient micro web framework for Go. It provides a beautifully expressive and easy to use foundation for your next website, API, or distributed app.**

- a bit faster than Iris version 7, based on `ab`
- stable api
- more examples
- sessions, websockets, typescript and cloud editor(fixed) on different packages
- test cov, including examples
- slack bot for support automation
- has a FAQ page which is part of the gitbook.com beta program
- central issue portal
- HuHu supported

https://github.com/go-siris/siris

**A fast, cross-platform and efficient web framework with robust set of well-designed features, written entirely in Go.**

- three maintainers
- plan to stabilize api, no unneeded changes
- plan to increase test-coverage
- plan to add more middlewares and examples


> If your team's project is missing from this list, please contact with me.
# 17 June 2017

### IRIS HAS BEEN ACQUIRED

Iris project has been acquired by a Dubai-based startup.

Both sides agree that every related public data should remain open for at least 30 days.

After the period of 30 days, company has the proprietary rights to delete or transfer this repository and all its related public data forever without any warnings.

The company may or may not reveal its true identity to the public.

Transaction of the public domains still in-progress:

- http://iris-go.com
- https://kataras.rocket.chat/channel/iris

View-accessed users can clone the current state of the project's public repositories and use without any warranties.

From now on, Original Author owns a high position to the company's table.

At any circumstances,

Original Author keeps the creation rights.

### About the future of Iris

Clone the repository today because if I can't find a new lead maintainer for the [v7.2](https://github.com/kataras/iris-v7-29d) you, as community, will have to find a way to communicate about its future, the name "iris go" was taken by the company too, so it will be nice if the future main contributor change its name too, if you don't do it I will not beat you but I don't know the full company's law-plan for this, yet.

All donators, without any exception, will have my support for at least 6 months (for all iris versions), we have a private room at the [chat](https://kataras.rocket.chat/channel/iris).

Don't worry **I will not let you down**, we're trying to find a decent open-source contributor to continue the Iris' open-source codebase. I'm already in touch with some good gophers but **If you're willing to maintain this project** please [send](#contact) me details about your experience, general bio and your github username.

**I am really thankful for all of your support to me and the community, all donations, all bug reports, all comments without any exception. I did proceeded with all my physical abilities so far but unfortunately there weren't enough for my survivor. I'm really sorry if the latest news made iris open-source community disappointed but you have to see things from my point view, I was one step before bankruptcy, I had no other choice but accept the offer.**
5 changes: 5 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# This is the official list of Iris authors for copyright
# purposes.

Gerasimos Maropoulos <[email protected]>
Bill Qeras, Jr. <[email protected]>
41 changes: 0 additions & 41 deletions CODE-OF-CONDUCT.md

This file was deleted.

5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
FROM irisgo/cloud-native-go:latest

ENV APPSOURCES /go/src/github.com/iris-contrib/cloud-native-go

RUN ${APPSOURCES}/cloud-native-go
12 changes: 12 additions & 0 deletions Dockerfile.build
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM golang:1.8.3-alpine

RUN apk update && apk upgrade && apk add --no-cache bash git
RUN go get github.com/iris-contrib/cloud-native-go

ENV SOURCES /go/src/github.com/iris-contrib/cloud-native-go
# COPY . ${SOURCES}

RUN cd ${SOURCES} $$ CGO_ENABLED=0 go build

ENTRYPOINT cloud-native-go
EXPOSE 8080
Loading

0 comments on commit 9f85b74

Please sign in to comment.