Skip to content

Commit

Permalink
Implements client skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
nullstyle committed Apr 24, 2014
1 parent 9ee91e4 commit a82285d
Show file tree
Hide file tree
Showing 34 changed files with 10,673 additions and 181 deletions.
3 changes: 3 additions & 0 deletions .bowerrc
@@ -0,0 +1,3 @@
{
"directory": "app/bower_components"
}
25 changes: 25 additions & 0 deletions .editorconfig
@@ -0,0 +1,25 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org

root = true


[*]

# Change these settings to your own preference
indent_style = space
indent_size = 4

# We recommend you to keep these unchanged
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

[package.json]
indent_style = space
indent_size = 2
1 change: 1 addition & 0 deletions .gitattributes
@@ -0,0 +1 @@
* text=auto
6 changes: 6 additions & 0 deletions .gitignore
@@ -1,3 +1,9 @@
/.idea
/node_modules
**.log
dist
.tmp
.sass-cache
app/bower_components
test/bower_components
stellar-client.sublime-workspace
22 changes: 22 additions & 0 deletions .jshintrc
@@ -0,0 +1,22 @@
{
"node": true,
"browser": true,
"esnext": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 4,
"latedef": true,
"newcap": true,
"noarg": true,
"quotmark": "single",
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"smarttabs": true,
"jquery": true,
"predef": ["angular"]
}
9 changes: 8 additions & 1 deletion README.md
@@ -1,4 +1,11 @@
##Stellar Client
# Stellar Client

The Stellar client is an AngularJS application that allows users to create, use,
and manage their account and wallet.


## Starting your dev server

```bash
gulp serve
```
43 changes: 0 additions & 43 deletions app.js

This file was deleted.

0 comments on commit a82285d

Please sign in to comment.