zhangzhang
ff6ad54b34
Compatible with case sensitive PostgreSQL identifiers ( #428 )
...
compatible with case sensitive identifiers
2022-10-04 15:03:40 +00:00
dependabot[bot]
2084a21db9
chore(deps): bump clap from 4.0.8 to 4.0.9 ( #427 )
...
Bumps [clap](https://github.com/clap-rs/clap ) from 4.0.8 to 4.0.9.
- [Release notes](https://github.com/clap-rs/clap/releases )
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md )
- [Commits](https://github.com/clap-rs/clap/compare/v4.0.8...v4.0.9 )
---
updated-dependencies:
- dependency-name: clap
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-10-04 02:48:12 +00:00
dependabot[bot]
3b086f5330
chore(deps): bump clap from 4.0.4 to 4.0.8 ( #426 )
...
Bumps [clap](https://github.com/clap-rs/clap ) from 4.0.4 to 4.0.8.
- [Release notes](https://github.com/clap-rs/clap/releases )
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md )
- [Commits](https://github.com/clap-rs/clap/compare/v4.0.4...v4.0.8 )
---
updated-dependencies:
- dependency-name: clap
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-10-03 02:49:10 +00:00
Yuri Astrakhan
aed3274162
Breakup config for pg and srv ( #420 )
...
Getting ready for multi-backend system, where each backend would have its own configuration.
All 3 config structs (clap args, config, and configbuilder) are now separated into 3 files - the main one, one for service (actix stuff), and one for PostgreSQL.
The files have been moved to `/pg` and `/srv`, but otherwise the logic should be mostly intact.
2022-10-01 07:48:11 +00:00
dependabot[bot]
44f293d2bb
chore(deps): bump dependabot/fetch-metadata from 1.3.3 to 1.3.4 ( #424 )
...
Bumps [dependabot/fetch-metadata](https://github.com/dependabot/fetch-metadata ) from 1.3.3 to 1.3.4.
- [Release notes](https://github.com/dependabot/fetch-metadata/releases )
- [Commits](https://github.com/dependabot/fetch-metadata/compare/v1.3.3...v1.3.4 )
---
updated-dependencies:
- dependency-name: dependabot/fetch-metadata
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-30 22:36:36 +00:00
dependabot[bot]
9e8e6726c6
chore(deps): bump clap from 4.0.2 to 4.0.4 ( #422 )
...
Bumps [clap](https://github.com/clap-rs/clap ) from 4.0.2 to 4.0.4.
- [Release notes](https://github.com/clap-rs/clap/releases )
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md )
- [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.0.2...v4.0.4 )
---
updated-dependencies:
- dependency-name: clap
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-30 02:46:26 +00:00
dependabot[bot]
c7efe236fa
chore(deps): bump clap from 4.0.0-rc.3 to 4.0.2 ( #421 )
...
Bumps [clap](https://github.com/clap-rs/clap ) from 4.0.0-rc.3 to 4.0.2.
- [Release notes](https://github.com/clap-rs/clap/releases )
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md )
- [Commits](https://github.com/clap-rs/clap/compare/v4.0.0-rc.3...v4.0.2 )
---
updated-dependencies:
- dependency-name: clap
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-29 02:38:54 +00:00
Yuri Astrakhan
47ed143d8f
Clean up configuration system to use Clap ( #415 )
...
* Use latest Clap-derive (currently v4rc, but should be public within a few days)
* reorganize configuration to streamline different config sources into one Config (using multiple ConfigBuilders)
2022-09-28 04:19:23 -04:00
Stepan Kuzmin
c7ce464005
Add missing libc6-compat
in Dockerfile ( #419 )
...
* Add missing `libc6-compat` in Dockerfile
Co-authored-by: Yuri Astrakhan <yuriastrakhan@gmail.com>
2022-09-27 17:24:02 +00:00
Yuri Astrakhan
23655c6a60
Clean up actix routes, HEAD support ( #416 )
...
Use attribute-based routing, and support HEAD requests (same as GET)
attribute routes are better because they keep route declaration (i.e. parameters) together with the code that uses it.
2022-09-27 12:06:25 -04:00
Yuri Astrakhan
2c44dc2ac3
Lint code based on clippy suggestions ( #417 )
2022-09-27 12:05:55 -04:00
dependabot[bot]
63523bf01d
chore(deps): bump openssl from 0.10.41 to 0.10.42 ( #418 )
...
Bumps [openssl](https://github.com/sfackler/rust-openssl ) from 0.10.41 to 0.10.42.
- [Release notes](https://github.com/sfackler/rust-openssl/releases )
- [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.41...openssl-v0.10.42 )
---
updated-dependencies:
- dependency-name: openssl
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-27 03:06:26 +00:00
Yuri Astrakhan
5ab2cec8f9
Attempt to migrate CI to maplibre/martin ( #408 )
...
Note that I manually published [maplibre/martin:latest](https://hub.docker.com/r/maplibre/martin ) to docker, so it might be able to pass CI ok. I have not looked deeply into the existing CI workflow - @stepankuzmin any suggestions on changes to that? The github actions are now setup
P.S. I am not certain what that whole `brew/tap` thing is - don't know enough about Macs
2022-09-26 21:48:46 -04:00
dependabot[bot]
8abf40fb6e
chore(deps): bump actix-cors from 0.6.2 to 0.6.3 ( #413 )
...
Bumps [actix-cors](https://github.com/actix/actix-extras ) from 0.6.2 to 0.6.3.
- [Release notes](https://github.com/actix/actix-extras/releases )
- [Commits](https://github.com/actix/actix-extras/compare/cors-v0.6.2...cors-v0.6.3 )
---
updated-dependencies:
- dependency-name: actix-cors
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-22 02:53:43 +00:00
dependabot[bot]
5b4b73ec88
chore(deps): bump itertools from 0.10.4 to 0.10.5 ( #412 )
...
Bumps [itertools](https://github.com/rust-itertools/itertools ) from 0.10.4 to 0.10.5.
- [Release notes](https://github.com/rust-itertools/itertools/releases )
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rust-itertools/itertools/commits )
---
updated-dependencies:
- dependency-name: itertools
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-21 02:51:44 +00:00
dependabot[bot]
6c736f90b3
chore(deps): bump env_logger from 0.9.0 to 0.9.1 ( #409 )
...
Bumps [env_logger](https://github.com/env-logger-rs/env_logger ) from 0.9.0 to 0.9.1.
- [Release notes](https://github.com/env-logger-rs/env_logger/releases )
- [Changelog](https://github.com/env-logger-rs/env_logger/blob/main/CHANGELOG.md )
- [Commits](https://github.com/env-logger-rs/env_logger/commits )
---
updated-dependencies:
- dependency-name: env_logger
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-19 02:40:12 +00:00
Birk Skyum
d0529feddf
option for more data
2022-09-17 16:03:06 +02:00
Birk Skyum
4c478dd642
move to gitlab
2022-09-17 16:02:18 +02:00
Birk Skyum
0ba54dcd30
move data set to gitlab
2022-09-17 15:40:30 +02:00
Birk Skyum
baabe04629
https
2022-09-17 01:23:38 +02:00
Birk Skyum
d350db8642
nginx
2022-09-17 01:05:00 +02:00
Birk Skyum
107ea87131
back to port 80
2022-09-17 00:30:03 +02:00
Birk Skyum
68adeb2440
update ports
2022-09-17 00:21:26 +02:00
Birk Skyum
59079c5a41
mvt wording
2022-09-17 00:02:09 +02:00
Birk Skyum
b23c0e2c09
favicon
2022-09-16 18:13:58 +02:00
Birk Skyum
b0a6f80c69
favicon
2022-09-16 18:06:42 +02:00
Birk Skyum
03a9734893
load all 12 months
2022-09-16 17:13:31 +02:00
Birk Skyum
bd8d3c45a1
remove file extension
2022-09-16 17:09:20 +02:00
Birk Skyum
7616dc1691
react 18
2022-09-16 16:53:19 +02:00
Birk Skyum
3a5e9678e9
working with maplibre
2022-09-16 16:45:02 +02:00
Birk Skyum
040ea14553
small renaming
2022-09-16 16:38:34 +02:00
Birk Skyum
6b716e9af4
fix layer name
2022-09-16 16:37:11 +02:00
Birk Skyum
16648a4817
maplibre + open carto style
2022-09-16 16:31:28 +02:00
Birk Skyum
4b03f6f83f
render-version
2022-09-16 16:25:08 +02:00
Birk Skyum
afd8c1d29e
small nits
2022-09-16 16:22:52 +02:00
Birk Skyum
bd517a2bf6
add logo
2022-09-16 16:18:19 +02:00
Birk Skyum
7a231c55d4
remove yandex analytics
2022-09-16 15:50:30 +02:00
Birk Skyum
55345a1601
initially only load 1 month of data
2022-09-16 15:28:32 +02:00
Birk Skyum
a043dbdcbb
ignore data folders
2022-09-16 15:28:18 +02:00
Birk Skyum
7226762f47
internally use http
2022-09-16 15:28:10 +02:00
Birk Skyum
69b2aa054d
lint
2022-09-16 15:27:55 +02:00
Birk Skyum
d9c94ea9d8
expose frontend port
2022-09-16 15:27:42 +02:00
Birk Skyum
5b46809751
fix csv headers
2022-09-16 15:27:29 +02:00
Birk Skyum
51697bf3bd
lint
2022-09-16 09:59:35 +02:00
Birk Skyum
96df965409
node 14
2022-09-16 09:59:32 +02:00
Birk Skyum
8e5935a23b
bump packages
2022-09-16 09:52:35 +02:00
Yuri Astrakhan
8b35f09461
[noop] Include readme code in the unit tests ( #402 )
...
This is a noop (we don't have any code in the readme at the moment),
but it ensures that if any is added, it all will compile properly.
2022-09-16 01:29:32 -04:00
dependabot[bot]
9ab0f9d335
chore(deps): bump semver from 1.0.13 to 1.0.14 ( #404 )
...
Bumps [semver](https://github.com/dtolnay/semver ) from 1.0.13 to 1.0.14.
- [Release notes](https://github.com/dtolnay/semver/releases )
- [Commits](https://github.com/dtolnay/semver/compare/1.0.13...1.0.14 )
---
updated-dependencies:
- dependency-name: semver
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-16 03:02:33 +00:00
dependabot[bot]
f966c04d3b
chore(deps): bump serde_yaml from 0.9.11 to 0.9.13 ( #401 )
...
Bumps [serde_yaml](https://github.com/dtolnay/serde-yaml ) from 0.9.11 to 0.9.13.
- [Release notes](https://github.com/dtolnay/serde-yaml/releases )
- [Commits](https://github.com/dtolnay/serde-yaml/compare/0.9.11...0.9.13 )
---
updated-dependencies:
- dependency-name: serde_yaml
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-15 02:41:41 +00:00
dependabot[bot]
31f122e53d
chore(deps): bump itertools from 0.10.3 to 0.10.4 ( #400 )
...
Bumps [itertools](https://github.com/rust-itertools/itertools ) from 0.10.3 to 0.10.4.
- [Release notes](https://github.com/rust-itertools/itertools/releases )
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rust-itertools/itertools/compare/v0.10.3...v0.10.4 )
---
updated-dependencies:
- dependency-name: itertools
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-14 02:52:15 +00:00