cd cmd/tlserver && go install .
The resulting tlserver
binary includes several core commands from transitland-lib
and adds the server
command.
The main subcommands are:
- tlserver server - Run transitland server
- tlserver version - Program version and supported GTFS and GTFS-RT versions
- tlserver fetch - Fetch GTFS data and create feed versions
- tlserver import - Import feed versions
- tlserver sync - Sync DMFR files to database
- tlserver unimport - Unimport feed versions
- tlserver rebuild-stats - Rebuild statistics for feeds or specific feed versions
To start the server with the REST API endpoints, GraphQL API endpoint, GraphQL explorer UI, and image generation endpoints:
tlserver server --dburl "postgres://your_host/your_database"
Alternatively, the database connection string can be specified using TL_DATABASE_URL
environment variable. For local development environments, you will usually need to add ?sslmode=disable
to the connection string.
Open http://localhost:8080/ in your web browser to see the GraphQL browser, or use the endpoints at /query
or /rest/...
The "example" server instance configured by the tlserver
command runs without authentication or authorization. Auth configuration is beyond the scope of this example command but can be added by configuring the server in your own package and adding HTTP middlewares to set user context and permissions data. You can use cmd/tlserver/main.go
as an example to get started; it uses only public APIs from this package. (Earlier versions of tlserver
included more built-in auth middlewares, but in our experience these are almost always custom per-installation, and were removed from this repo.) Additionally, this example server configuration exposes Go profiler endpoints on /debug/pprof/...
.
- Install
go install -tags 'postgres' github.com/golang-migrate/migrate/v4/cmd/migrate@latest
- On macOS, you will need the GNU timeout command:
brew install coreutils
- You will also need GDAL tools for importing reference data sets:
apt-get install gdal-bin
, orbrew install gdal-bin
, etc. - Check out
github.com/interline-io/transitland-lib
which contains the necessary schema and migrations. - Set
TL_TEST_SERVER_DATABASE_URL
to the connection string to a test database- e.g.
postgresql://localhost:5432/tlv2_test_server?sslmode=disable
- You must also set
PGHOST=localhost
,PGDATABASE=tlv2_test_server
, etc., to match this url - This requirement may be removed in the future
- e.g.
- Initialize test database schema:
transitland-lib/schema/postgres/bootstrap.sh
- This will create the
tlv2_test_server
database in postgres - Will halt with an error (intentionally) if this database already exists
- Runs golang-migrate on the migrations in
transitland-lib/schema/postgres/migrations
- Unpacks and imports the Natural Earth datasets bundled with
transitland-lib
- This will create the
- Initialize test fixtures:
./testdata/test_setup.sh
- Builds and installs the
cmd/tlserver
command - Sets up test feeds contained in
testdata/server/server-test.dmfr.json
- Fetches and imports feeds contained in
testdata/gtfs
- Creates additional fixtures defined in
testdata/test_supplement.pgsql
- Note that temporary files will be created in
testdata/tmp
; these are excluded in.gitignore
- Builds and installs the
- Optional: Set
TL_TEST_REDIS_URL
to run some GBFS tests - Optional: Set
TL_TEST_FGA_ENDPOINT
to a running OpenFGA server to run authorization tests - Run all tests with
go test -v ./...
Test cases generally run within transactions; you do not need to regenerate the fixtures unless you are testing migrations or changes to data import functionality.
transitland-server
is released under a "dual license" model: