Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zeneixe/cellular_automaton
Cellular Automaton written in Elm
https://github.com/zeneixe/cellular_automaton
cellular-automaton elixir-lang elixir-phoenix elm-lang
Last synced: about 2 months ago
JSON representation
Cellular Automaton written in Elm
- Host: GitHub
- URL: https://github.com/zeneixe/cellular_automaton
- Owner: Zeneixe
- Created: 2017-05-24T10:24:34.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-03-01T10:34:59.000Z (almost 2 years ago)
- Last Synced: 2023-03-22T12:30:12.001Z (almost 2 years ago)
- Topics: cellular-automaton, elixir-lang, elixir-phoenix, elm-lang
- Language: Elm
- Size: 848 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cellular Automaton
### About:
A simple Elm learning app, inspired by Stephen Wolfram's "A new kind of science".### Live demo:
On Glitch: https://cellular-automaton.glitch.me/### Install:
Clone this repo into a new project folder, e.g. `my-elm-project`:
```
git clone https://github.com/moarwick/elm-webpack-starter my-elm-project
cd my-elm-project
```Re-initialize the project folder as your own repo:
```
rm -rf .git # on Windows: rmdir .git /s /q
git init
git add .
git commit -m 'first commit'
```Install all dependencies using the handy `reinstall` script:
```
npm run reinstall
```
*This does a clean (re)install of all npm and elm packages, plus a global elm install.*### Serve locally:
```
npm start
```
* Access app at `http://localhost:8080/`
* Get coding! The entry point file is `src/elm/Main.elm`
* Browser will refresh automatically on any file changes..