Relay TodoMVC with Java Backend
Java JavaScript HTML
Switch branches/tags
Nothing to show
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
app inital commit Aug 16, 2015
gradle/wrapper inital commit Aug 16, 2015
src/main/java/todomvc inital commit Aug 16, 2015
.gitignore inital commit Aug 16, 2015
README.md inital commit Aug 16, 2015
build.gradle inital commit Aug 16, 2015
gradlew inital commit Aug 16, 2015
gradlew.bat inital commit Aug 16, 2015
settings.gradle inital commit Aug 16, 2015

README.md

Relay TodoMVC with a Java Server

This is a port of the Relay TodoMVC example where the GraphQL JavaScript server is replaced with a Java server based on graphql-java.

Running

Starting the frontend:

cd app
npm install
npm start

Starting the backend: (running on port 8080)

./gradlew start

The app is now available at http://localhost:3000