An implementation of the Game of Life and Death in .NET Core and React.
Status | Description |
---|---|
CI | |
Frontend deps | |
Repo stats |
Although the game is not yet finished, you can see the latest version built from master
here: http://game-of-life-and-death.herokuapp.com/
# Install dependencies for backend and frontend
dotnet restore
npm install
# Rebuild the project after modifications
dotnet build
# Start the server locally in production mode - with ASPNETCORE_ENVIRONMENT=Production
npm run app-prod
# In a separate terminal, use this to start webpack-dev-server
# This provides JS assets on a separate port. The server in dev mode links `<script>`s to it
# Webpack will watch for changes and refresh the page after recompiling
npm start
# Start the server locally in dev mode - with ASPNETCORE_ENVIRONMENT=Development
npm run app-dev
dotnet publish
Default output folder is src/Golad/bin/Debug/netcoreapp1.1/publish/
.
More info about publish command here.
This is completely free.
Go to the app settings and change automatic deploys to use your fork if you want.
No public API exists yet.
cd tests/Golad.Tests
dotnet test
TODO
WTFPL, see LICENSE.md.