https://github.com/chadtech/parsley-project
https://github.com/chadtech/parsley-project
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/chadtech/parsley-project
- Owner: Chadtech
- Created: 2017-04-06T21:16:41.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-10T20:43:36.000Z (about 9 years ago)
- Last Synced: 2025-02-16T07:42:03.116Z (over 1 year ago)
- Language: Elm
- Size: 64.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Parsley Project
How to get going..
```
> git clone https://github.com/Chadtech/parsley-project.git
> cd parsley-project
> npm install
> elm package install --yes
> gulp
then open up http://localhost:2979
```
This repo is organized as ..
```
gulpFile.js
server.js
package.json
elm-package.json
development/
index.html
app.js
elm.js
style.css
source/
app.js -- Loads the elm file, and handles ports
Main.elm -- Top level Elm file
Ports.elm -- Definition of javascript ports
Styles/
Main.styl -- Primary styl file
*.styl
Main/
View.elm -- Top most View module
Update.elm -- Top most update module
Init.elm -- Initial model
Update/ -- Update helpers
Add.elm
Remove.elm
Field.elm
Log.elm
*.elm
Types/
Model.elm -- Definition of the apps model
Message.elm -- Definition of the apps messages
*.elm
Components/ -- General view components used in many places
DropDown.elm
DropDown/
Basics.elm
List.elm
List/
Basics.elm
BottomButtons.elm
Field.elm
List.elm
View/ -- Views for each stage in the form
Welcome.elm
PersonalInformation.elm
PersonalInformation/
Fields.elm
Proceed.elm
FamilyHistory.elm
Medications.elm
Diseases.elm
Allergies.elm
Contract.elm
Contract/
Components.elm
Complete.elm
```