-
-
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.
- Loading branch information
Showing
26 changed files
with
623 additions
and
96 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
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,11 @@ | ||
--- | ||
version: 2 | ||
python: | ||
install: | ||
- method: pip | ||
path: . | ||
requirements: | ||
- recommonmark | ||
- sphinx | ||
- sphinx-rtd-theme | ||
- sphinx-issues |
This file was deleted.
Oops, something went wrong.
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,42 @@ | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on `Keep a Changelog <https://keepachangelog.com/en/1.0.0/>`_, | ||
and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0.html>`_. | ||
|
||
[Unreleased] | ||
============ | ||
|
||
Added | ||
***** | ||
|
||
- Login page is responsive. :issue:`1` | ||
- Adapt mobile keyboards to login page fields. :issue:`2` | ||
- Password recovery interface. :issue:`3` | ||
- User profile interface. :issue:`4` | ||
- Renamed the project *canaille*. :issue:`5` | ||
- Command to remove old tokens. :issue:`17` | ||
- Improved password recovery email. :issue:`14` :issue:`26` | ||
- Use flask `SERVER_NAME` configuration variable instead of `URL`. :issue:`24` | ||
- Improved consents page. :issue:`27` | ||
- Admin user page. :issue:`8` | ||
- Project logo. :pr:`29` | ||
|
||
Fixed | ||
***** | ||
|
||
- Form translations. :issue:`19` :issue:`23` | ||
- Avoid to use Google Fonts. :issue:`21` | ||
|
||
Removed | ||
******* | ||
|
||
- 'My tokens' page. :issue:`22` | ||
|
||
|
||
[0.0.1] - 2020-10-21 | ||
==================== | ||
|
||
Added | ||
***** | ||
|
||
- Initial release. |
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,20 +1,27 @@ | ||
# Contribute | ||
Contribute | ||
========== | ||
|
||
Contributions are welcome! | ||
|
||
## Unit tests | ||
Unit tests | ||
---------- | ||
|
||
To run the tests, you just need to run `tox`. Everything must be green before patches get merged. | ||
|
||
## Style | ||
Style | ||
----- | ||
|
||
We use `black` to format our code. Please apply `black` on your patches before submiting them. | ||
|
||
## Development environment | ||
Development environment | ||
----------------------- | ||
|
||
To try a development environment, you can run the docker image and then open https://127.0.0.1:5000 | ||
You can then connect with user *admin* and password *admin* to access an admin account, or user *user* and password *user* for a regular one. | ||
|
||
```bash | ||
cp canaille/conf/config.sample.toml canaille/conf/config.toml | ||
cp canaille/conf/oauth-authorization-server.sample.json canaille/conf/oauth-authorization-server.json | ||
cp canaille/conf/openid-configuration.sample.json canaille/conf/openid-configuration.json | ||
docker-compose up | ||
``` | ||
.. code-block:: console | ||
cp canaille/conf/config.sample.toml canaille/conf/config.toml | ||
cp canaille/conf/oauth-authorization-server.sample.json canaille/conf/oauth-authorization-server.json | ||
cp canaille/conf/openid-configuration.sample.json canaille/conf/openid-configuration.json | ||
docker-compose up |
File renamed without changes.
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
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.