Skip to content

Commit 741e2df

Browse files
Merge pull request #1046 from ibi-group/mtc-deploy
Merge mtc-deploy into dev
2 parents a5e48da + f28d3b0 commit 741e2df

File tree

104 files changed

+1178
-378
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+1178
-378
lines changed

.github/workflows/node-ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,12 @@ jobs:
1616
- uses: actions/setup-python@v2
1717
with:
1818
python-version: '3.x'
19-
- name: Install mkdocs
19+
- name: Install mkdocs and plugins
2020
run: |
2121
pip install Jinja2==3.0.3 mkdocs
2222
mkdocs --version
23+
pip install mkdocs-macros-plugin
24+
pip install requests
2325
- name: Use Node.js 14.x
2426
uses: actions/setup-node@v1
2527
with:

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,13 @@ configurations/*
2222
!configurations/default
2323
!configurations/test
2424
!configurations/end-to-end
25+
!configurations/mtc-docs
2526
dist
2627
assets
2728

29+
# Mkdocs local build
30+
target/
31+
2832
# Secret config files
2933
env.yml
3034
env.yml-original

.readthedocs.yml renamed to .readthedocs.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,12 @@ version: 2
88
build:
99
os: ubuntu-22.04
1010
tools:
11-
python: "3.11"
11+
python: "3.13"
12+
13+
# Install mkdocs macros and other plugins
14+
python:
15+
install:
16+
- requirements: docs/requirements.txt
1217

1318
mkdocs:
1419
configuration: mkdocs.yml

configurations/default/env.yml.tmp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ AUTH0_CLIENT_ID: your-auth0-client-id
22
AUTH0_CONNECTION_NAME: your-auth0-connection-name
33
AUTH0_DOMAIN: your-auth0-domain
44
BUGSNAG_KEY: optional-bugsnag-key
5-
MAP_BASE_URL: optional-map-tile-url
65
MAPBOX_ACCESS_TOKEN: your-mapbox-access-token
76
MAPBOX_MAP_ID: mapbox/outdoors-v11
87
MAPBOX_ATTRIBUTION: <a href="https://www.mapbox.com/about/maps/" target="_blank">&copy; Mapbox &copy; OpenStreetMap</a> <a href="https://www.mapbox.com/map-feedback/" target="_blank">Improve this map</a>
8+
MAP_BASE_URL: optional-map-tile-url
99
# MAP_BASE_URL: http://tile.openstreetmap.org/{z}/{x}/{y}.png # Uncomment it if maps are gray
1010
SLACK_CHANNEL: optional-slack-channel
1111
SLACK_WEBHOOK: optional-slack-webhook
@@ -22,6 +22,6 @@ GRAPH_HOPPER_KEY: your-graph-hopper-key
2222
# - 6
2323
# - -46
2424
# - 83
25-
GOOGLE_ANALYTICS_TRACKING_ID: optional-ga-key
2625
# GRAPH_HOPPER_POINT_LIMIT: 10 # Defaults to 30
26+
GOOGLE_ANALYTICS_TRACKING_ID: optional-ga-key
2727
DISABLE_AUTH: true
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Read the Docs configuration file for MkDocs projects
2+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3+
4+
# Required
5+
version: 2
6+
7+
# Set the version of Python and other tools you might need
8+
build:
9+
os: ubuntu-22.04
10+
tools:
11+
python: "3.13"
12+
13+
# Install mkdocs macros and other plugins
14+
# Per readthedocs: paths are relative to the root of the project.
15+
python:
16+
install:
17+
- requirements: docs/requirements.txt
18+
19+
mkdocs:
20+
configuration: configurations/mtc-docs/mkdocs-mtc.yml
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
INHERIT: ../../mkdocs.yml
2+
site_name: Transit Data Manager Docs
3+
docs_dir: ../../docs
4+
5+
extra:
6+
product_name: MTC Transit Data Manager (TDM)
7+
support_email: transitdata@511.org
8+
9+
nav:
10+
- Home: 'index.md'
11+
- Data Manager:
12+
- 'Introduction': 'user/introduction.md'
13+
- 'Managing Projects & Feeds': 'user/managing-projects-feeds.md'
14+
- 'Publishing Feeds': 'user/publishing-feeds.md'
15+
- 'Merging Feeds': 'user/merging-feeds.md'
16+
- 'Feed Version Summary': 'user/feed-version-summary.md'
17+
- 'Managing Users': 'user/managing-users.md'
18+
- 'Service Alerts Manager': 'user/service-alerts.md'
19+
- 'Searching for Routes and Stops': 'user/searching-routes-stops.md'
20+
- 'GTFS+ Editor': 'user/gtfs-plus-editor.md'
21+
- 'GTFS Editor':
22+
- Getting Started: 'user/editor/getting-started.md'
23+
- Stops: 'user/editor/stops.md'
24+
- Routes: 'user/editor/routes.md'
25+
- Patterns: 'user/editor/patterns.md'
26+
- Schedules: 'user/editor/schedules.md'
27+
- Fares: 'user/editor/fares.md'
28+
- Appendices:
29+
- GTFS Validation Warnings: 'user/appendix-gtfs-warnings.md'

docs/dev/development.md

Lines changed: 1 addition & 1 deletion

docs/img/affected-service.png

75.1 KB

docs/img/agency-filter.png

823 KB

docs/img/alert-editor.png

1.13 MB

0 commit comments

Comments
 (0)