https://github.com/pcsx2/web-api
API for release information and possibly more in the future
https://github.com/pcsx2/web-api
Last synced: 4 months ago
JSON representation
API for release information and possibly more in the future
- Host: GitHub
- URL: https://github.com/pcsx2/web-api
- Owner: PCSX2
- Created: 2021-11-12T19:07:33.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-05-01T19:27:48.000Z (about 1 year ago)
- Last Synced: 2025-07-29T03:59:11.385Z (11 months ago)
- Language: Rust
- Size: 2.86 MB
- Stars: 0
- Watchers: 8
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PCSX2 API
TODO
## Development
### Running Locally
#### SQLite Setup
- `cargo install sqlx-cli`
- `sqlx database create`
- `sqlx migrate run --source ./db/migrations`
- `cargo sqlx prepare`
#### Running the App
- `cargo run`
### Docker
#### Building Docker Container
- Ensure Docker is running
- `docker build . --tag pcsx2-api:local`
#### Running Local Docker Container
- `docker-compose -f ./docker-compose.local.yaml up`
#### Package Docker Container
- `docker save -o $PWD/pcsx2-api.tar.gz pcsx2-api:test`
- `docker load -i pcsx2-api.tar.tar`