https://github.com/veeara282/vgmcharts
Explore trending video game music
https://github.com/veeara282/vgmcharts
data-science isrc music music-metadata pokemon vgm video-game-music
Last synced: 3 months ago
JSON representation
Explore trending video game music
- Host: GitHub
- URL: https://github.com/veeara282/vgmcharts
- Owner: veeara282
- License: mit
- Created: 2026-02-04T18:08:28.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-04-01T07:59:35.000Z (3 months ago)
- Last Synced: 2026-04-01T09:30:02.607Z (3 months ago)
- Topics: data-science, isrc, music, music-metadata, pokemon, vgm, video-game-music
- Language: PLpgSQL
- Homepage:
- Size: 142 KB
- Stars: 3
- Watchers: 0
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vgmcharts
Explore trending video game music
## First things first: create a .env file
Find the terminal command appropriate for your operating system below and copy the
example `.env-example` into a local `.env` you can then edit with the credentials we
provide. Contact us for the deets!
Unix / macOS (bash / zsh):
```sh
cp .env-example .env
# edit .env with your editor by typing `code .env`, `vim .env`, etc.
```
PowerShell (Windows):
```powershell
Copy-Item .env-example .env
# then edit .env with Notepad or your preferred editor
```
The gitignore in this project is already set up to never commit your `.env` file; please
keep secrets out of version control (aka git).
## Running the app
Some useful commands for building, running, and shutting down the Docker environment:
```sh
# Build all containers
docker compose build
# Rebuild and run all services
docker compose up --build
# Shut down all services
docker compose down
# Shut down all services and remove named volumes (object store and database)
docker compose down -v
```
For more useful Docker commands, visit [docker.how](https://docker.how/).
Note that containers should *always* be run in Docker because they depend on the
environment variables in `.env`.