You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+23-23Lines changed: 23 additions & 23 deletions
Original file line number
Diff line number
Diff line change
@@ -16,16 +16,13 @@ While working on _Adagrams_, it may help to think of a physical metaphor for thi
16
16
17
17
In this version of _Adagrams_, we will only be working with the English alphabet.
18
18
19
-

19
+

20
20
21
-
22
-
## Project Development
23
-
24
-
### Pair Programming
21
+
## Pair Programming
25
22
26
23
Utilize good pair programming practices. Refer to articles from the [Agile Alliance](http://guide.agilealliance.org/guide/pairing.html), the [Agile Institute](http://powersoftwo.agileinstitute.com/2015/02/benefits-of-pair-programming-revisited.html), and the lesson in Learn titled Intro to Pair Programming from Approaching a Problem if you need a refresher for some best practices. Switch _driver_ and _navigator_ roles often. When there is uncertainty or confusion, step away from the keyboard and discuss, plan, and document on paper or whiteboard before continuing.
27
24
28
-
###One-Time Project Setup
25
+
## One-Time Project Setup
29
26
30
27
Follow these directions once, a the beginning of your project:
31
28
@@ -36,47 +33,45 @@ Follow these directions once, a the beginning of your project:
36
33
37
34

38
35
39
-
1. In Github, add the other membe(s) of your team as collaborators to the repository. Do this by a The student who forked the respository should first choosing **Settings** from the top menu bar, then **Manage access** from the left navigation, and finally **Invite teams or people**.
36
+
2. In Github, add the other membe(s) of your team as collaborators to the repository. Do this by a The student who forked the respository should first choosing **Settings** from the top menu bar, then **Manage access** from the left navigation, and finally **Invite teams or people**.
40
37
41
38

39
+
42
40

41
+
43
42

44
43
45
44
The member(s) who are invite will need to accept the invitation either by accepting an email invitation or accepting the invitation in Github.
46
45
47
-
48
-
49
-
50
-
51
46
*Each member of the pair should complete the following steps:*
52
47
53
-
2. Navigate to your projects folder named `projects`
48
+
3. Navigate to your projects folder named `projects`
54
49
55
50
```bash
56
51
$ cd~/Developer/projects
57
52
```
58
53
59
-
. "Clone" (download a copy of this project) into your projects folder. This command makes a new folder called `adagrams-py`, and then puts the project into this new folder. Make sure you are cloning from your copy of the project and not the class version (ada-cX).
54
+
4. "Clone" (download a copy of this project) into your projects folder. This command makes a new folder called `adagrams-py`, and then puts the project into this new folder. Make sure you are cloning from your copy of the project and not the class version (ada-cX).
60
55
61
56
```bash
62
57
$ git clone ...
63
58
```
64
59
65
60
Use `ls` to confirm there's a new project folder
66
61
67
-
4. Move your location into this project folder
62
+
5. Move your location into this project folder
68
63
69
64
```bash
70
65
$ cd adagrams-py
71
66
```
72
67
73
-
5. Create a virtual environment named `venv` for this project:
68
+
6. Create a virtual environment named `venv` for this project:
0 commit comments