Update external git reference #noissue
This commit is contained in:
parent
70e48783b8
commit
74fc734d60
2 changed files with 63 additions and 54 deletions
51
CHANGELOG.md
Normal file
51
CHANGELOG.md
Normal file
|
@ -0,0 +1,51 @@
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
## 0.3.0.1
|
||||||
|
- Remove cookie consent as session cookies should be allowed because they provide core functionality
|
||||||
|
- Adjust `legal.example.md` and add `PHPSESSID`
|
||||||
|
- Fix styles
|
||||||
|
|
||||||
|
## 0.3.0.0
|
||||||
|
- Fixes
|
||||||
|
- Cookie consent
|
||||||
|
|
||||||
|
## 0.2.0.1
|
||||||
|
- Design fixes
|
||||||
|
- GDPR adjustments (specify agreement in a `.md` file)
|
||||||
|
|
||||||
|
## 0.1.3.3 to 0.2.0.0
|
||||||
|
- update to latest yaml
|
||||||
|
- Force to lower on email and username
|
||||||
|
- Update README and htaccess for Apache
|
||||||
|
- Change to bootstrap4 theme
|
||||||
|
- Add legal information hint on sign up page
|
||||||
|
|
||||||
|
## 0.1.3.2:
|
||||||
|
- Refactor
|
||||||
|
- Bugfixes
|
||||||
|
- Add possibility to determine LogLevel and logger name in environment
|
||||||
|
|
||||||
|
## 0.1.3.1:
|
||||||
|
- Bugfixes
|
||||||
|
|
||||||
|
## 0.1.3:
|
||||||
|
- add authentication after sign up
|
||||||
|
- only logged in users can delete their account (with the help of the token)
|
||||||
|
- only logged in users can change their account password
|
||||||
|
|
||||||
|
## 0.1.2:
|
||||||
|
- Bugfixes
|
||||||
|
|
||||||
|
## 0.1.1:
|
||||||
|
- updated readme and `env.example`
|
||||||
|
- fix some language validator inconsistencies
|
||||||
|
- added admin notifications
|
||||||
|
- added possibility for users to delete their account
|
||||||
|
- added back index page
|
||||||
|
- works with mod_admin_rest
|
||||||
|
version [afc42d7](https://github.com/snowblindroan/mod_admin_rest/commit/afc42d70f0aceb2351a1bc786d61e3f4dbdfb948)
|
||||||
|
|
||||||
|
## 0.1:
|
||||||
|
- initial release
|
||||||
|
- works with mod_admin_rest
|
||||||
|
version [afc42d7](https://github.com/snowblindroan/mod_admin_rest/commit/afc42d70f0aceb2351a1bc786d61e3f4dbdfb948)
|
66
README.md
66
README.md
|
@ -1,4 +1,4 @@
|
||||||
# README #
|
# README
|
||||||
|
|
||||||
A simple webinterface for users. This app uses [`admin_rest`](https://github.com/snowblindroan/mod_admin_rest) module of
|
A simple webinterface for users. This app uses [`admin_rest`](https://github.com/snowblindroan/mod_admin_rest) module of
|
||||||
prosody. So [prosody.im](http://prosody.im) and this module are hard dependencies. The interface allows users
|
prosody. So [prosody.im](http://prosody.im) and this module are hard dependencies. The interface allows users
|
||||||
|
@ -22,13 +22,18 @@ This app uses
|
||||||
|
|
||||||
as dependencies.
|
as dependencies.
|
||||||
|
|
||||||
## Requirements ##
|
The main git repository is hosted at _[https://git.myservermanager.com/varakh/prosody_web_admin_rest](https://git.myservermanager.com/varakh/prosody_web_admin_rest)_.
|
||||||
|
Other repositories are mirrors and pull requests, issues, and planning are managed there.
|
||||||
|
|
||||||
|
Contributions are very welcome!
|
||||||
|
|
||||||
|
## Requirements
|
||||||
|
|
||||||
* admin_rest module of prosody
|
* admin_rest module of prosody
|
||||||
* composer
|
* composer
|
||||||
* sqlite pdo, mb_string
|
* sqlite pdo, mb_string
|
||||||
|
|
||||||
## Install ##
|
## Install
|
||||||
|
|
||||||
* Install composer
|
* Install composer
|
||||||
* Change directory to project home
|
* Change directory to project home
|
||||||
|
@ -37,7 +42,7 @@ as dependencies.
|
||||||
* `composer install`
|
* `composer install`
|
||||||
* `php bin/phpmig migrate`
|
* `php bin/phpmig migrate`
|
||||||
|
|
||||||
## Deployment ##
|
## Deployment
|
||||||
|
|
||||||
* Set up a cron job using `php projectRootDir/bin/UsersAwaitingVerificationCleanUpCronJob.php` to clean up users who
|
* Set up a cron job using `php projectRootDir/bin/UsersAwaitingVerificationCleanUpCronJob.php` to clean up users who
|
||||||
signed up but did not verify their account periodically.
|
signed up but did not verify their account periodically.
|
||||||
|
@ -68,7 +73,7 @@ location ~ \.php$ {
|
||||||
|
|
||||||
You should be able to set a very strict Content-Security-Policy.
|
You should be able to set a very strict Content-Security-Policy.
|
||||||
|
|
||||||
## Upgrade ##
|
## Upgrade
|
||||||
|
|
||||||
* Change directory to project home
|
* Change directory to project home
|
||||||
* `git pull`
|
* `git pull`
|
||||||
|
@ -76,59 +81,12 @@ You should be able to set a very strict Content-Security-Policy.
|
||||||
* `php bin/phpmig migrate`
|
* `php bin/phpmig migrate`
|
||||||
* look into Changelog for major changes
|
* look into Changelog for major changes
|
||||||
|
|
||||||
## Developers ##
|
## Developers
|
||||||
|
|
||||||
* start server with `php -S localhost:8080 -t public public/index.php`
|
* start server with `php -S localhost:8080 -t public public/index.php`
|
||||||
* point browser to [localhost:8080](http://localhost:8080) to have a preview
|
* point browser to [localhost:8080](http://localhost:8080) to have a preview
|
||||||
|
|
||||||
## Translations ##
|
## Translations
|
||||||
|
|
||||||
This app uses Symfony Translator. It's bootstraped in `Util\BootstrapHelper` and locales are placed under `data/locale/`
|
This app uses Symfony Translator. It's bootstraped in `Util\BootstrapHelper` and locales are placed under `data/locale/`
|
||||||
. Adjust to your needs or help translating.
|
. Adjust to your needs or help translating.
|
||||||
|
|
||||||
## Changelog ##
|
|
||||||
|
|
||||||
- 0.3.0.1
|
|
||||||
- Remove cookie consent as session cookies should be allowed because they provide core functionality
|
|
||||||
- Adjust `legal.example.md` and add `PHPSESSID`
|
|
||||||
- Fix styles
|
|
||||||
- 0.3.0.0
|
|
||||||
- Fixes
|
|
||||||
- Cookie consent
|
|
||||||
- 0.2.0.1
|
|
||||||
- Design fixes
|
|
||||||
- GDPR adjustments (specify agreement in a `.md` file)
|
|
||||||
- 0.1.3.3 to 0.2.0.0
|
|
||||||
- update to latest yaml
|
|
||||||
- Force to lower on email and username
|
|
||||||
- Update README and htaccess for Apache
|
|
||||||
- Change to bootstrap4 theme
|
|
||||||
- Add legal information hint on sign up page
|
|
||||||
- 0.1.3.2:
|
|
||||||
- Refactor
|
|
||||||
- Bugfixes
|
|
||||||
- Add possibility to determine LogLevel and logger name in environment
|
|
||||||
|
|
||||||
- 0.1.3.1:
|
|
||||||
- Bugfixes
|
|
||||||
|
|
||||||
- 0.1.3:
|
|
||||||
- add authentication after sign up
|
|
||||||
- only logged in users can delete their account (with the help of the token)
|
|
||||||
- only logged in users can change their account password
|
|
||||||
|
|
||||||
- 0.1.2:
|
|
||||||
- Bugfixes
|
|
||||||
|
|
||||||
- 0.1.1:
|
|
||||||
- updated readme and `env.example`
|
|
||||||
- fix some language validator inconsistencies
|
|
||||||
- added admin notifications
|
|
||||||
- added possibility for users to delete their account
|
|
||||||
- added back index page
|
|
||||||
- works with mod_admin_rest
|
|
||||||
version [afc42d7](https://github.com/snowblindroan/mod_admin_rest/commit/afc42d70f0aceb2351a1bc786d61e3f4dbdfb948)
|
|
||||||
- 0.1:
|
|
||||||
- initial release
|
|
||||||
- works with mod_admin_rest
|
|
||||||
version [afc42d7](https://github.com/snowblindroan/mod_admin_rest/commit/afc42d70f0aceb2351a1bc786d61e3f4dbdfb948)
|
|
||||||
|
|
Reference in a new issue