Add local build feature #5
No reviewers
Labels
No labels
P0
P1
P2
P3
good first issue
Infrastructure
blocked
bug
config
discussion
documentation
duplicate
enhancement
go
help wanted
internal
invalid
kludge
observability
perfomance
question
refactoring
wontfix
No milestone
No project
No assignees
4 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: TrueCloudLab/frostfs-locode-db#5
Loading…
Reference in a new issue
No description provided.
Delete branch "realloc/frostfs-locode-db:local_build"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This pull request adds all necessary data sources to the repository, allowing for the creation of a self-contained database build that can be generated without an internet connection. By including all data sources within the repository, we can ensure that the resulting database build will be consistent and avoid any potential issues that may arise from changes to external data sources.
Add local build featureto WIP: Add local build feature774b807e42
to3424a51d59
3424a51d59
to6dc68fec8d
WIP: Add local build featureto Add local build feature@ -23,3 +25,3 @@
in/airports.dat: $(DIRS)
wget -c https://raw.githubusercontent.com/jpatokal/openflights/master/data/airports.dat -O in/airports.dat
zcat data/airports.dat.gz > in/airports.dat
Just wondering, why
zcat
and notgunzip
?Just an old habit. Technically, it's the same binary on most systems and can be considered a shortcut to
gunzip -c
.