Skip to content

Commit c914093

Browse files
author
Raphael TANT
committed
First commit
0 parents  commit c914093

14 files changed

+147
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/

.meteor/.finished-upgraders

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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

.meteor/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
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+
s756jb175wkuca6fjsp

.meteor/packages

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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 # Packages every Meteor app needs to have
8+
mobile-experience # Packages for a great mobile UX
9+
mongo # The database Meteor supports right now
10+
reactive-var # Reactive variable for tracker
11+
jquery # Helpful client-side library
12+
tracker # Meteor's client-side reactive programming library
13+
14+
standard-minifier-css # CSS minifier run for production mode
15+
standard-minifier-js # JS minifier run for production mode
16+
es5-shim # ECMAScript 5 compatibility for older browsers.
17+
18+
autopublish # Publish all data to the clients (for prototyping)
19+
insecure # Allow all DB writes from clients (for prototyping)
20+
angular-templates
21+
mys:typescript-ng-annotate

.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/versions

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
2+
3+
4+
5+
6+
7+
8+
9+
10+
11+
12+
13+
14+
15+
16+
17+
18+
19+
20+
21+
22+
23+
24+
25+
26+
27+
28+
29+
30+
31+
32+
33+
34+
35+
36+
37+
38+
39+
40+
41+
42+
43+
44+
45+
46+
47+
48+
49+
50+
51+
52+
53+
54+
55+
56+
57+
58+
59+
60+
61+
62+
63+
64+
65+
66+
67+
68+
69+
70+
71+
72+

client/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<body ng-app="socially">
2+
<div ng-include src="'client/main.html'"></div>
3+
</body>

client/main.css

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/* CSS declarations go here */

client/main.html

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<p>Nothing here {{ 'yet' + '!' }}</p>

client/main.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import angular from 'angular';
2+
import angularMeteor from 'angular-meteor';
3+
4+
5+
angular.module('socially', [
6+
angularMeteor
7+
]);

package.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"name": "socially",
3+
"private": true,
4+
"scripts": {
5+
"start": "meteor run"
6+
},
7+
"dependencies": {
8+
"angular": "^1.5.7",
9+
"angular-meteor": "^1.3.11",
10+
"meteor-node-stubs": "~0.2.0"
11+
}
12+
}

server/main.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { Meteor } from 'meteor/meteor';
2+
3+
Meteor.startup(() => {
4+
// code to run on server at startup
5+
});

0 commit comments

Comments
 (0)