Skip to content

Commit 7640a60

Browse files
committed
Initial Commit
0 parents  commit 7640a60

File tree

256 files changed

+20169
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

256 files changed

+20169
-0
lines changed

.editorconfig

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false

.gitignore

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
8+
# Runtime data
9+
pids
10+
*.pid
11+
*.seed
12+
*.pid.lock
13+
14+
# Directory for instrumented libs generated by jscoverage/JSCover
15+
lib-cov
16+
17+
# Coverage directory used by tools like istanbul
18+
coverage
19+
20+
# nyc test coverage
21+
.nyc_output
22+
23+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
24+
.grunt
25+
26+
# Bower dependency directory (https://bower.io/)
27+
bower_components
28+
29+
# node-waf configuration
30+
.lock-wscript
31+
32+
# Compiled binary addons (https://nodejs.org/api/addons.html)
33+
build/Release
34+
35+
# Dependency directories
36+
node_modules/
37+
jspm_packages/
38+
39+
# Typescript v1 declaration files
40+
typings/
41+
42+
# Optional npm cache directory
43+
.npm
44+
45+
# Optional eslint cache
46+
.eslintcache
47+
48+
# Optional REPL history
49+
.node_repl_history
50+
51+
# Output of 'npm pack'
52+
*.tgz
53+
54+
# Yarn Integrity file
55+
.yarn-integrity
56+
57+
# dotenv environment variables file
58+
.env

.meteor/.finished-upgraders

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# This file contains information which helps Meteor properly upgrade your
2+
# app when you run 'meteor update'. You should check it into version control
3+
# with your project.
4+
5+
notices-for-0.9.0
6+
notices-for-0.9.1
7+
0.9.4-platform-file
8+
notices-for-facebook-graph-api-2
9+
1.2.0-standard-minifiers-package
10+
1.2.0-meteor-platform-split
11+
1.2.0-cordova-changes
12+
1.2.0-breaking-changes
13+
1.3.0-split-minifiers-package
14+
1.3.5-remove-old-dev-bundle-link
15+
1.4.0-remove-old-dev-bundle-link
16+
1.4.1-add-shell-server-package

.meteor/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
dev_bundle
2+
local

.meteor/.id

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# This file contains a token that is unique to your project.
2+
# Check it into your repository along with the rest of this directory.
3+
# It can be used for purposes such as:
4+
# - ensuring you don't accidentally deploy one app on top of another
5+
# - providing package authors with aggregated statistics
6+
7+
1ipv1tp12xzfzhba088c

.meteor/cordova-plugins

Whitespace-only changes.

.meteor/packages

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Meteor packages used by this project, one per line.
2+
# Check this file (and the other files in this directory) into your repository.
3+
#
4+
# 'meteor add' and 'meteor remove' will edit this file for you,
5+
# but you can also edit it by hand.
6+
7+
meteor-base@1.0.4 # Packages every Meteor app needs to have
8+
mobile-experience@1.0.4 # Packages for a great mobile UX
9+
mongo@1.1.12 # The database Meteor supports right now
10+
reactive-var@1.0.10 # Reactive variable for tracker
11+
session@1.1.6
12+
tracker@1.1.0 # Meteor's client-side reactive programming library
13+
14+
standard-minifier-css@1.2.0 # CSS minifier run for production mode
15+
standard-minifier-js@1.2.0 # JS minifier run for production mode
16+
es5-shim@4.6.14 # ECMAScript 5 compatibility for older browsers.
17+
ecmascript@0.5.8 # Enable ECMAScript2015+ syntax in app code
18+
19+
accounts-password@1.3.0
20+
accounts-base@1.2.11
21+
check@1.2.3
22+
audit-argument-checks@1.0.7
23+
browser-policy@1.0.9
24+
25+
fourseven:scss
26+
aldeed:collection2
27+
alanning:roles
28+
themeteorchef:bert
29+
static-html@1.1.12
30+
xolvio:cleaner
31+
practicalmeteor:mocha
32+
xolvio:backdoor
33+
mdg:validated-method
34+
dburles:factory
35+
ddp-rate-limiter@1.0.5
36+
react-meteor-data
37+
edgee:slingshot
38+
random@1.0.10
39+
ryanswapp:fabricjs
40+
shell-server@0.2.1
41+
yuukan:streamy

.meteor/platforms

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
server
2+
browser

.meteor/release

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
METEOR@1.4.1.1

.meteor/versions

+114
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
accounts-base@1.2.11
2+
accounts-password@1.3.0
3+
alanning:roles@1.2.15
4+
aldeed:collection2@2.10.0
5+
aldeed:collection2-core@1.2.0
6+
aldeed:schema-deny@1.1.0
7+
aldeed:schema-index@1.1.0
8+
aldeed:simple-schema@1.5.3
9+
allow-deny@1.0.5
10+
audit-argument-checks@1.0.7
11+
autoupdate@1.3.11
12+
babel-compiler@6.9.1
13+
babel-runtime@0.1.11
14+
base64@1.0.9
15+
binary-heap@1.0.9
16+
blaze@2.1.9
17+
blaze-tools@1.0.10
18+
boilerplate-generator@1.0.10
19+
browser-policy@1.0.9
20+
browser-policy-common@1.0.10
21+
browser-policy-content@1.0.11
22+
browser-policy-framing@1.0.11
23+
caching-compiler@1.1.7
24+
caching-html-compiler@1.0.7
25+
callback-hook@1.0.9
26+
check@1.2.3
27+
coffeescript@1.2.4_1
28+
dburles:factory@1.1.0
29+
ddp@1.2.5
30+
ddp-client@1.3.1
31+
ddp-common@1.2.6
32+
ddp-rate-limiter@1.0.5
33+
ddp-server@1.3.10
34+
deps@1.0.12
35+
diff-sequence@1.0.6
36+
ecmascript@0.5.8
37+
ecmascript-runtime@0.3.14
38+
edgee:slingshot@0.7.1
39+
ejson@1.0.12
40+
email@1.1.17
41+
es5-shim@4.6.14
42+
fastclick@1.0.12
43+
fortawesome:fontawesome@4.5.0
44+
fourseven:scss@3.10.0
45+
geojson-utils@1.0.9
46+
hot-code-push@1.0.4
47+
html-tools@1.0.11
48+
htmljs@1.0.11
49+
http@1.2.9
50+
id-map@1.0.8
51+
jquery@1.11.9
52+
launch-screen@1.0.12
53+
livedata@1.0.18
54+
localstorage@1.0.11
55+
logging@1.1.15
56+
mdg:validated-method@1.1.0
57+
mdg:validation-error@0.5.1
58+
meteor@1.2.17
59+
meteor-base@1.0.4
60+
minifier-css@1.2.14
61+
minifier-js@1.2.14
62+
minimongo@1.0.17
63+
mobile-experience@1.0.4
64+
mobile-status-bar@1.0.12
65+
modules@0.7.6
66+
modules-runtime@0.7.6
67+
mongo@1.1.12
68+
mongo-id@1.0.5
69+
npm-bcrypt@0.9.1
70+
npm-mongo@1.5.49
71+
observe-sequence@1.0.12
72+
ordered-dict@1.0.8
73+
practicalmeteor:chai@2.1.0_1
74+
practicalmeteor:loglevel@1.2.0_2
75+
practicalmeteor:mocha@2.4.5_6
76+
practicalmeteor:mocha-core@1.0.1
77+
practicalmeteor:sinon@1.14.1_2
78+
promise@0.8.7
79+
raix:eventemitter@0.1.3
80+
random@1.0.10
81+
rate-limit@1.0.5
82+
react-meteor-data@0.2.9
83+
reactive-dict@1.1.8
84+
reactive-var@1.0.10
85+
reload@1.1.10
86+
retry@1.0.8
87+
routepolicy@1.0.11
88+
ryanswapp:fabricjs@0.2.0
89+
service-configuration@1.0.10
90+
session@1.1.6
91+
sha@1.0.8
92+
shell-server@0.2.1
93+
spacebars@1.0.13
94+
spacebars-compiler@1.0.13
95+
srp@1.0.9
96+
standard-minifier-css@1.2.0
97+
standard-minifier-js@1.2.0
98+
static-html@1.1.13
99+
templating@1.2.15
100+
templating-compiler@1.2.15
101+
templating-runtime@1.2.15
102+
templating-tools@1.0.5
103+
themeteorchef:bert@2.1.1
104+
tmeasday:check-npm-versions@0.3.1
105+
tmeasday:test-reporter-helpers@0.2.1
106+
tracker@1.1.0
107+
ui@1.0.12
108+
underscore@1.0.9
109+
url@1.0.10
110+
webapp@1.3.11
111+
webapp-hashing@1.0.9
112+
xolvio:backdoor@0.2.0
113+
xolvio:cleaner@0.3.1
114+
yuukan:streamy@1.3.0

README.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# wireflow.co
2+
Alpha version of Wireflow app made by (Vanila Team)
3+
4+
# Wireflow - flow chart collaboration app
5+
6+
Go to terminal and in the project root,
7+
8+
Install Dependencies
9+
```
10+
sudo apt-get install libcairo2-dev libjpeg-dev libgif-dev libjpeg8-dev libpango1.0-dev build-essential g++
11+
```
12+
Then install npm modules and start the app
13+
```
14+
meteor npm install
15+
meteor npm start
16+
```

client/main.html

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<head>
2+
<meta charset="utf-8">
3+
<title>Wireflow</title>
4+
<meta name="description" content="Real Time FlowChart Collaboration App">
5+
<meta name="viewport" content="initial-scale=1, minimal-ui, maximum-scale=1, minimum-scale=1" />
6+
7+
<meta name="twitter:card" content="summary_large_image">
8+
<meta name="twitter:creator" content="@vanila_io">
9+
<meta name="twitter:title" content="Create beautiful flow charts">
10+
<meta name="twitter:description" content="Wireflow is free online tool for creating beautiful wireframes &amp; user flows. NO Photoshop skills required!">
11+
<meta name="twitter:image" content="http://wireflow.co/seo-card.png">
12+
13+
<meta property="og:url" content="http://wireflow.co/" />
14+
<meta property="og:title" content="Create beautiful flow charts" />
15+
<meta property="og:description" content="Wireflow is free online tool for creating beautiful wireframes &amp; user flows. NO Photoshop skills required!" />
16+
<meta property="og:image" content="http://wireflow.co/seo-card.png" />
17+
18+
<link rel="icon" type="image/png" href="favicon.png" sizes="16x16 32x32 64x64">
19+
<link rel="apple-touch-icon" sizes="120x120" href="apple-touch-icon-precomposed.png">
20+
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
21+
<link href="//fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
22+
23+
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans:300,300i,400,400i,600,600i,700,700i" rel="stylesheet">
24+
<script>
25+
26+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
27+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
28+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
29+
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
30+
31+
ga('create', 'UA-1200538-36', 'auto');
32+
ga('send', 'pageview');
33+
34+
</script>
35+
36+
<script type="text/javascript">
37+
var _mfq = _mfq || [];
38+
(function() {
39+
var mf = document.createElement("script");
40+
mf.type = "text/javascript"; mf.async = true;
41+
mf.src = "//cdn.mouseflow.com/projects/c80233bf-6b2e-448b-862d-1c224213bef8.js";
42+
document.getElementsByTagName("head")[0].appendChild(mf);
43+
})();
44+
</script>
45+
46+
</head>
47+
48+
<body>
49+
<div id="react-root"></div>
50+
</body>

client/main.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
import '/imports/startup/client';

0 commit comments

Comments
 (0)