Skip to content

bestdan/subsequences-react

Repository files navigation

Subsequences

Subsequences is a web app for playing a game based on Consequences.

Players submit a text and a story is generated based on the text.

Eng stuff

Frontend is built with Create React App in /frontend.

Backend is minimized with express in /backend.

First, run the development server:

node backend/server.js
npm start

#!/bin/bash

( cd backend && npm install && PORT=$BACKEND_PORT node server.js & ) || { echo "Failed to start backend"; exit 1; }

(cd frontend && npm install && npm start) || { echo "Failed to start frontend"; exit 1; }

#!/bin/bash

( cd backend && npm install && PORT=$BACKEND_PORT node server.js & ) || { echo "Failed to start backend"; exit 1; }

(cd frontend && npm install && npm run build) || { echo "Failed to start frontend"; exit 1; }

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published