Initial commit for login branch. Will implement authentication using django admin

This commit is contained in:
Johannes Randerath 2024-06-13 16:06:26 +02:00
parent 8f26811929
commit fe1273813c
3 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,10 @@
### Tool for cities to easily publish their public transport in a standardized form ### Tool for cities to easily publish their public transport in a standardized form
Public transport is often provided by many, smaller companies, operating mostly in their respective regions. A problem deriving from this is that, on a interregional, national and international, few machine-readable data is available. This impacts customers, as it makes it more difficult to find public transport routes, more so while travelling in regions they are less familiar with. Public transport is often provided by many, smaller companies, operating mostly in their respective regions. A problem deriving from this is that, on a interregional, national and international, few machine-readable data is available. This impacts customers, as it makes it more difficult to find public transport routes, more so while travelling in regions they are less familiar with.
We designed a tool to provide city officials or volunteers to map the public transport in their jurisdiction using an easy-to-use graphical utility. https://www.gnu.org/software/make/ We designed a tool to provide city officials or volunteers to map the public transport in their jurisdiction using an easy-to-use graphical utility.
## Documentation
Project documentation is available to build from source using sphinx, prebuilt as html and at [ReadTheDocs](transport-accessibility.readthedocs.io).
## Installation instructions ## Installation instructions
### Dependencies ### Dependencies

View File

@ -1,14 +1,11 @@
## General ## General
- Decide for a license - Decide for a license
- Decide how to license produced data as the work of inserting the data and the data itself is not ours. Make the users agree on a FLOSS or CC license for the GTFS files produced from their data? What if someone doesn't own the data they upload? What if it's not free - How can we produce data in that case? ToS? - Decide how to license produced data as the work of inserting the data and the data itself is not ours. Make the users agree on a FLOSS or CC license for the GTFS files produced from their data? What if someone doesn't own the data they upload? What if it's not free - How can we produce data in that case? ToS?
- Add documentation. Sphinx?
## Frontend ## Frontend
- Add TODOs - Add TODOs
## Backend ## Backend
- Serve data to views in an intuitive way. As an object of a custom class?
- Fetch data to serve to views - Fetch data to serve to views
- Write data received from views - Write data received from views
- Implement views serve data to the templates
- Handle requests corrrectly in views and urls - Handle requests corrrectly in views and urls

View File

@ -108,7 +108,7 @@ AUTH_PASSWORD_VALIDATORS = [
LANGUAGE_CODE = 'en-us' LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC' TIME_ZONE = 'Europe/Berlin'
USE_I18N = True USE_I18N = True