-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Created nice changelog as foundation for new versions (included in manifest), changed version information and there a was missing dependecy in setup.py (weirdly not found by Travis).
- Loading branch information
1 parent
f2ec67d
commit b532e1e
Showing
5 changed files
with
29 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Change Log | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
## [0.1] - 2017-02-11 | ||
### Added | ||
- Web application via Flask and SQLAlchemy | ||
- Simple extensibility with discovery via entrypoints and extension | ||
via calling hooks | ||
- Basic user login/logout via GitHub OAuth | ||
- Custom roles assigned to users (special admin role) | ||
- Public pages for users, organizations and repositories | ||
- Fulltext search for users, organizations and repositories | ||
- Managing own (only personal) GitHub repositories within app | ||
- Listening for webhooks (push, release, repository) and storing information | ||
about repositories to the database | ||
- Repository within app can be public, private or hidden (secret URL) | ||
- Administrator can manage users, repositories, roles and extensions | ||
within administration zone | ||
- Very simple REST API (GET only) via flask-restless | ||
- Commands to create DB, assign role and check/process new repository events |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
include LICENSE | ||
include CHANGELOG.md | ||
include setup.cfg | ||
include pytest.ini | ||
include config/*.example.cfg | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters