This repository has been archived by the owner on Feb 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup-development-environment.sh
executable file
·55 lines (39 loc) · 2.31 KB
/
setup-development-environment.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env bash
################################################################################
### Set up Postgres
################################################################################
docker rm -f serial-killer-postgres
docker run -d --name serial-killer-postgres -p 5432:5432 -e POSTGRES_PASSWORD=postgres postgres:12
sleep 2
echo 'CREATE DATABASE serial_killer' | docker exec -i serial-killer-postgres psql -U postgres
cat ./sql/2020-04-30-create-tables.sql | docker exec -i serial-killer-postgres psql -U postgres serial_killer
################################################################################
### Download IMDb data files
################################################################################
rm -rf tmp/
mkdir -p tmp/
# TODO: download files concurrently
echo 'Downloading IMDb files...'
curl https://datasets.imdbws.com/title.basics.tsv.gz --output ./tmp/all-films.tsv.gz
curl https://datasets.imdbws.com/title.episode.tsv.gz --output ./tmp/episodes.tsv.gz
curl https://datasets.imdbws.com/title.ratings.tsv.gz --output ./tmp/ratings.tsv.gz
gunzip ./tmp/all-films.tsv.gz
gunzip ./tmp/episodes.tsv.gz
gunzip ./tmp/ratings.tsv.gz
################################################################################
### Normalize data
################################################################################
echo 'Normalizing shows & episodes...'
./scripts/normalize-shows-and-episodes.rb
################################################################################
### Insert normalized data to Postgres
################################################################################
echo 'Inserting into Postgres...'
cat ./tmp/normalized-shows.tsv | docker exec -i serial-killer-postgres psql -U postgres serial_killer -c "COPY shows FROM STDIN DELIMITER E'\t'"
cat ./tmp/normalized-episodes.tsv | docker exec -i serial-killer-postgres psql -U postgres serial_killer -c "COPY episodes FROM STDIN DELIMITER E'\t'"
################################################################################
### Perform additional DB manipulations
################################################################################
cat ./sql/2020-05-05-create-show-id-index.sql \
./sql/2020-05-05-create-title-tsvector-index.sql \
| docker exec -i serial-killer-postgres psql -U postgres serial_killer