c022f2ba2e
Deploy dummy Shopify site as both a learning exercise and proof-of-concept for Raf's card game, Monster Poker. Change-Id: I7bc91dcbf4e171c5e169140f5e9d811303e1285f Reviewed-on: https://cl.tvl.fyi/c/depot/+/4787 Tested-by: BuildkiteCI Reviewed-by: wpcarro <wpcarro@gmail.com> Autosubmit: wpcarro <wpcarro@gmail.com>
6 lines
124 B
Nix
6 lines
124 B
Nix
{ depot, pkgs, ... }:
|
|
|
|
pkgs.runCommandNoCC "monsterpoker.app" {} ''
|
|
mkdir -p $out
|
|
cp ${./index.html} $out/index.html
|
|
''
|