An open API service indexing awesome lists of open source software.

https://github.com/guoyunhe/retrodata

Open Source Retro Game Database
https://github.com/guoyunhe/retrodata

Last synced: 4 months ago
JSON representation

Open Source Retro Game Database

Awesome Lists containing this project

README

        

# RetroData: The Open Source Retro Game Database

## Local Development

### Initialization

```
git submodule init --recursive
cp .env.example .env
composer install
npm i
sail up -d
sail artisan migrate --seeding
sail down
```

### Start Server

```
sail up -d
sail npm start
```

Visit http://localhost

### Stop Server

```
sail stop
```

### Reinstall Sail

```
php artisan sail:install
```

### Cleanup Docker

```
docker-compose down -v --rmi all --remove-orphans
```