Skip to content

Commit db2103f

Browse files
committed
Tech test boilerplate
0 parents  commit db2103f

15 files changed

+928
-0
lines changed

.gitignore

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

.meteor/.finished-upgraders

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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.4.0-remove-old-dev-bundle-link
15+
1.4.1-add-shell-server-package
16+
1.4.3-split-account-service-packages
17+
1.5-add-dynamic-import-package
18+
1.7-split-underscore-from-meteor-base
19+
1.8.3-split-jquery-from-blaze

.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+
bclaccaool98.lg8gos52g4hp

.meteor/packages

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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+
[email protected] # Packages every Meteor app needs to have
8+
[email protected] # Packages for a great mobile UX
9+
[email protected] # The database Meteor supports right now
10+
blaze-html-templates # Compile .html files into Meteor Blaze views
11+
jquery # Wrapper package for npm-installed jquery
12+
[email protected] # Reactive variable for tracker
13+
[email protected] # Meteor's client-side reactive programming library
14+
15+
[email protected] # CSS minifier run for production mode
16+
[email protected] # JS minifier run for production mode
17+
[email protected] # ECMAScript 5 compatibility for older browsers
18+
[email protected] # Enable ECMAScript2015+ syntax in app code
19+
[email protected] # Enable TypeScript syntax in .ts and .tsx modules
20+
[email protected] # Server-side component of the `meteor shell` command
21+
22+
[email protected] # Publish all data to the clients (for prototyping)
23+
[email protected] # Allow all DB writes from clients (for prototyping)
24+
25+
[email protected] # Update code in development without reloading the page
26+
blaze-hot # Update files using Blaze's API with HMR
27+
acemtp:x3dom

.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

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
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+
73+
74+
75+
76+
77+
78+
79+
80+
81+

client/main.css

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
body {
2+
margin: 0;
3+
overflow: hidden;
4+
}
5+
6+
#x3d {
7+
width: 100vw;
8+
height: 100vh;
9+
}

client/main.html

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<head>
2+
<title>tech test template</title>
3+
</head>
4+
5+
<body>
6+
{{> appBlock}}
7+
</body>
8+
9+
<template name="appBlock">
10+
<x3d id="x3d">
11+
<scene>
12+
<!-- Camera -->
13+
<viewpoint position="8.19 12.33 19.5" orientation="-0.834 0.55 0 0.65"></viewpoint>
14+
<navigationinfo type="turntable" headlight="true"></navigationinfo>
15+
16+
<!-- Floor -->
17+
<transform rotation="-1.5707963267948966 0 0 1.5707963267948966">
18+
<shape>
19+
<appearance>
20+
<material diffuseColor="#4A9"></material>
21+
</appearance>
22+
<plane center='0,0,-0.5' size="50 50"></plane>
23+
</shape>
24+
</transform>
25+
26+
</scene>
27+
</x3d>
28+
</template>

client/main.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { Template } from 'meteor/templating';
2+
3+
import './main.html';
4+
5+
Template.appBlock.onCreated(function helloOnCreated() { });
6+
7+
Template.appBlock.helpers({ });
8+
9+
Template.appBlock.events({ });

0 commit comments

Comments
 (0)