rnons / ted2srt

Download bilingual subtitles of TED talks. https://ted2sub.org now.

Home Page:https://ted2sub.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ted2srt

Donate

This is the source code of ted2srt.org, a website to download bilingual subtitles of TED talks. The backend is written in Haskell, while the frontend is in PureScript.

Set up development environment

Nix is required for development.

Frontend

cd frontend
nix-shell
spago build -w
yarn
yarn start

Run yarn build once, so that backend can start correctly.

Backend

cd backend
nix-shell
stack build

While stack is running, you can setup the database. Postgres and Redis are needed, you can either use your system wide version or nix installed version. Following is how to use the nix version.

# enter nix shell to use postgres and redis installed by nix
nix-shell

# start redis
redis-server --daemonize yes

# start postgres, you only need to initdb and createdb for the first time
initdb -D data -U postgres
pg_ctl -D data -l logfile start
createdb -U postgres ted2srt

One last step, create your own .env file and modify it to your needs.

cp .env.example .env

If stack build has finished now, run

stack exec ted2srt

to start the server.

Then navigate to http://localhost:3001, try paste a TED talk url to the search bar, cheers.

About

Download bilingual subtitles of TED talks. https://ted2sub.org now.

https://ted2sub.org

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Haskell 43.2%Language:PureScript 26.7%Language:JavaScript 22.6%Language:Nix 3.3%Language:CSS 1.2%Language:HTML 1.1%Language:Shell 0.9%Language:Dhall 0.6%Language:TypeScript 0.3%