Skip to content

Instantly share code, notes, and snippets.

@SirmaXX
Last active September 3, 2019 16:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SirmaXX/4b0c27827974ddd28b20581302274169 to your computer and use it in GitHub Desktop.
Save SirmaXX/4b0c27827974ddd28b20581302274169 to your computer and use it in GitHub Desktop.
elm project creator
#!/bin/sh
# Author : Deniz Balcı
# Project: Elm Project Creator
# Date : 02/09/2019
echo "proje ismi nedir ?"
read projectname
mkdir $projectname
cd $projectname
yes Y |elm init
yes Y |elm install elm/http
yes Y |elm install elm/json
yes Y |elm install mdgriffith/elm-ui
yes Y |elm install NoRedInk/elm-json-decode-pipeline
cd src
touch Main.elm
touch View.elm
touch State.elm
touch Rest.elm
touch Types.elm
touch Colors.elm
mkdir Page
@SirmaXX
Copy link
Author

SirmaXX commented Sep 1, 2019

konsola sh elm.sh yazarak çalıştırabilirsiniz.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment