https://github.com/vanniktech/playground
Empty project with basic dependencies for testing a few things out.
https://github.com/vanniktech/playground
Last synced: 2 months ago
JSON representation
Empty project with basic dependencies for testing a few things out.
- Host: GitHub
- URL: https://github.com/vanniktech/playground
- Owner: vanniktech
- License: apache-2.0
- Created: 2018-04-01T12:30:10.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2026-03-23T18:28:34.000Z (3 months ago)
- Last Synced: 2026-03-24T16:05:26.994Z (3 months ago)
- Language: Kotlin
- Size: 1.08 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- Funding: .github/funding.yml
- License: LICENSE
Awesome Lists containing this project
README
Playground
==========
- Android: `./gradlew installDebug`
- iOS: XCode ...
- Desktop: `./gradlew hotRun --auto`
- Server
- Postgres is required with:
```sql
CREATE USER playground WITH PASSWORD 'playground';
CREATE DATABASE playground;
ALTER DATABASE playground OWNER TO playground;
```
- Run locally: `./gradlew playground-server:run`
- Run as jar: `./gradlew playground-server:shadowJar && java -jar playground-server/build/libs/server-all.jar`
- Js: `./gradlew playground-frontend-web:jsBrowserDevelopmentRun`