-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathonboarding.html
130 lines (120 loc) · 5.51 KB
/
onboarding.html
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!-- Cap7 Onboarding Page
Copyright © 2015 Jonathan Hasbun -->
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="Cap7">
<link rel="icon" href="#">
<title>Onboarding</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap-3.3.5-dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/templates/starter-template.css" rel="stylesheet">
<link href="css/templates/worklog-banner.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="menu.html">Cap7</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Onboarding</a></li>
</ul>
</div>
</div>
</nav>
<!-- CONTAINER -->
<div class="container" style="padding-bottom:150px;">
<div class="starter-template">
<h1>Welcome [NAME]!</h1>
<p class="lead">This is the new member onboarding section! Here you<br>will find everything you need to jump right into the Cap7 workflow.</p>
</div>
<div class="col-xs-12 col-md-8">
<pre>
To-Do:
1) Create a git repos for:
-the team web page
-the team project (this may need several repos)
2) Write-out git commit process and commit message standards
-builds/compiles, passes tests, "ship it" on review board
3) Create a google docs project folder
-add any necessary files/templates
4) Create a slack account
5) Look into project management systems
-jira
-trello
-jima
6) Look into code review systems
-Review Board
7) Look into build servers
-Jenkins
Onboarding:
1) Cap7 user account (maybe, maybe not)
2) Slack account
3) Google Drive account
4) Project Management account
5) Github account
7) Jenkins access
8) Code Review System account
9) Additional resources/articles/tutorials
</pre>
<pre>
Google Docs: <a href="https://drive.google.com/folderview?id=0B63Vtvn1aHdsVGRkS3BwZ2RuUVU&usp=sharing">Cap7 Docs</a>
</pre>
<strong id="communication">Communication:</strong><br><br>
<p>In any Team communication is key! Cap7 will be utilizing Slack for general
purposes, ranging from scheduling meetings to alerting the team of issues that
require immediate action.<p>
<p>Slack is a free service and easy to setup. Simply follow the link SLACK and
enter your PSU email into the form then click "Sign up for free". You will
then be taken to a new window. Once there click the "Find your team" button
in the top right. You will then be prompted to enter your team's Slack domain,
enter "cap7" and click "Continue". Finally, you will be prompted to sign-in
with your email and a password that you will now create.</p>
<p>Plugins are an essential piece of the Slack experience. Below are some of the
ones that we will all need, however feel free to look through the full list of
available plugins by clicking on the "Add a service integration" link at the
top of each channel.</p>
</div>
<div class="col-xs-6 col-md-4" style="text-align:center;">
<ul class="nav nav-pills nav-stacked">
<li class="center-block"><a href="#">General</a></li>
<li><a href="#communication">Communication</a></li>
<li><a href="#">Collaboration</a></li>
<li><a href="#">Project Management</a></li>
<li><a href="#">Source Control</a></li>
<li><a href="#">Code Review</a></li>
<li><a href="#">Build System</a></li>
<li><a href="#">Resources</a></li>
</ul>
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="css/bootstrap-3.3.5-dist/js/bootstrap.min.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="http://getbootstrap.com/assets/js/ie10-viewport-bug-workaround.js"></script>
</body>
</html>