Gestion de prise de rendez-vous
Go to file
Lauréline Guérin 22721d9cfa
gitea/chrono/pipeline/head This commit looks good Details
manager: display extra user block on demand on check page (#75413)
2023-03-30 11:43:07 +02:00
chrono manager: display extra user block on demand on check page (#75413) 2023-03-30 11:43:07 +02:00
debian misc: require django 3.2 (#75442) 2023-03-29 11:48:44 +02:00
tests manager: display extra user block on demand on check page (#75413) 2023-03-30 11:43:07 +02:00
.coveragerc jenkins: show execution context in coverage reports (#60446) 2022-01-11 15:51:21 +01:00
.git-blame-ignore-revs misc: update git-blame-ignore-revs commit hashes (#75446) 2023-03-29 16:13:36 +02:00
.gitignore manager: timesheet to PDF (#61070) 2022-03-03 08:20:32 +01:00
.pre-commit-config.yaml misc: bump djhtml version (#75442) 2023-03-29 12:08:30 +02:00
COPYING include a copy of the AGPL 2016-02-13 09:17:15 +01:00
Jenkinsfile Prepare Jenkinsfile for Gitea migration (#74572) 2023-02-20 14:59:45 +01:00
MANIFEST.in agendas: add .sql migration files in MANIFEST (#56481) 2021-08-30 15:28:43 +02:00
README misc: change django-upgrade target version to 3.2 (#75442) 2023-03-29 12:08:30 +02:00
getlasso.sh jenkins: switch to tox for running tests (#15974) 2017-05-23 13:28:45 +02:00
getlasso3.sh python3: fix getlasso3.sh to get module regardless of version 2018-05-13 16:06:01 +02:00
jenkins.sh jenkins: get lasso symlinks in jenkins virtual env 2018-02-15 14:37:39 +01:00
manage.py misc: run manage.py with python3 (#36224) 2019-09-18 14:17:20 +02:00
pylint.rc pylint: ignore unsupported-binary-operation (#68474) 2022-08-27 16:29:25 +02:00
pylint.sh ci: speed up CI using multiple processes with pylint (#67056) 2022-07-07 18:17:33 +02:00
requirements.txt misc: remove jsonfield requirement (#53289) 2021-04-29 10:17:20 +02:00
setup.py misc: require django 3.2 (#75442) 2023-03-29 11:48:44 +02:00
tox.ini ci: limit tests to django 3.2 (#74894) 2023-03-10 10:14:06 +01:00

README

Chrono
======

Chrono provides a set of management interfaces and web services to register
for activities and stuff.


Installation
------------

Dependencies can be installed with pip,

 $ pip install -r requirements.txt

It's then required to get the database configured (./manage.py migrate); by
default it will create a postgresqsl DB.

You can then run the Django test server for a quick try (you should refer to
the Django documentation for production deployments).

 $ ./manage.py runserver


Settings
--------

Default settings are loaded from settings.py, they can be overloaded by a
local_settings.py file set in the same directory, or by a file referenced
in the CHRONO_SETTINGS_FILE environment variable.


Code Style
----------

black is used to format the code, using thoses parameters:

    black --target-version py35 --skip-string-normalization --line-length 110

isort is used to format the imports, using those parameters:

    isort --profile black --line-length 110

pyupgrade is used to automatically upgrade syntax, using those parameters:

    pyupgrade --keep-percent-format --py37-plus

django-upgrade is used to automatically upgrade Django syntax, using those parameters:

    django-upgrade --target-version 3.2

djhtml is used to automatically indent html files, using those parameters:

    djhtml --tabwidth 2

There is .pre-commit-config.yaml to use pre-commit to automatically run black,
isort, pyupgrade, django-upgrade and djhtml before commits. (execute
`pre-commit install` to install the git hook.)


Tests
-----

    pip install pytest pytest-django pytest-mock
    DJANGO_SETTINGS_MODULE=welco.settings py.test tests/

License
-------

This program is free software: you can redistribute it and/or modify it under
the terms of the GNU Affero General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option) any
later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
details.

You should have received a copy of the GNU Affero General Public License along
with this program.  If not, see <http://www.gnu.org/licenses/>.