-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9e381e2
commit 9a018f6
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
# purs-architecture-tutorial | ||
|
||
A port of the [Elm Architecture Tutorial](https://github.com/evancz/elm-architecture-tutorial/) to PureScript. | ||
|
||
## Getting Started: | ||
|
||
1. Ensure that you've got PureScript 0.7.4.1 installed. | ||
2. Ensure that you've got pulp installed. | ||
3. Run `npm install` to get the virtual-dom dependency loaded | ||
4. Run `pulp dep install` to get the PureScript dependencies loaded | ||
5. Run `pulp server` to run the server and access it at `http://localhost:1337` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"name": "purs-architecture-tutorial", | ||
"version": "1.0.0", | ||
"description": "A port of the [Elm Architecture Tutorial](https://github.com/evancz/elm-architecture-tutorial/) to PureScript.", | ||
"main": "index.js", | ||
"directories": { | ||
"test": "test" | ||
}, | ||
"dependencies": { | ||
"virtual-dom": "^2.1.1" | ||
}, | ||
"devDependencies": {}, | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/parsonsmatt/purs-architecture-tutorial.git" | ||
}, | ||
"author": "", | ||
"license": "ISC", | ||
"bugs": { | ||
"url": "https://github.com/parsonsmatt/purs-architecture-tutorial/issues" | ||
}, | ||
"homepage": "https://github.com/parsonsmatt/purs-architecture-tutorial#readme" | ||
} |