Skip to content

Commit

Permalink
Correct ReadMe and minor cosmetic updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ezemtsov committed Jun 26, 2019
1 parent e54746d commit 7fa5d10
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 7 deletions.
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# PlayWithMe

### This is a placeholder for multiplayer 5-in-a-row
### Work is under the progress
### This is a multiplayer 5-in-a-row
#### Backend is build in Haskell

### Instructions to run the server:
#### 0. Install haskell stack
#### 1. git clone {this repository}
#### 2. cd PlayWithMe
#### 3. stack build
#### 4. stack exec server
#### 5. Open {server-ip}:8080/

#### Note: ports 8080 and 9160 should be available
7 changes: 4 additions & 3 deletions stack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ packages:
# Allow a newer minor version of GHC than the snapshot specifies
# compiler-check: newer-minor

nix:
enable: true
packages: [zlib]
# Uncomment that to make it work on NixOS
# nix:
# enable: true
# packages: [zlib]
4 changes: 2 additions & 2 deletions web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<!-- Dialog confirmation to create a new session -->
<dialog class="mdl-dialog my-mdl-dialog">
<h4 class="mdl-dialog__title">Start a new game?</h4>
<h4 class="mdl-dialog__title">Enter your name to join the game</h4>
<div class="mdl-dialog__content">
<p>To join an existing session use the session URL</p>
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
Expand All @@ -24,7 +24,7 @@ <h4 class="mdl-dialog__title">Start a new game?</h4>
<div class="mdl-dialog__actions">
<button type="button"
class="mdl-button mdl-button--raised mdl-button--colored newGame"
disabled>New game</button>
disabled>Join game</button>
</div>
</dialog>

Expand Down

0 comments on commit 7fa5d10

Please sign in to comment.