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
- Host: GitHub
- URL: https://github.com/guoyunhe/retrodata
- Owner: guoyunhe
- Created: 2021-11-02T12:20:40.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-10T06:46:20.000Z (over 2 years ago)
- Last Synced: 2025-01-10T17:39:33.278Z (5 months ago)
- Language: PHP
- Homepage:
- Size: 4.66 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```