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
<h1>Contributing to the ProLUG Linux Systems Security Course Book</h1>
4
+
<h1>Contributing to the ProLUG Linux Automation Engineering Course Book</h1>
5
5
</p>
6
6
</div>
7
7
@@ -128,7 +128,7 @@ Pull requests with substantial merge conflicts may be rejected.
128
128
You can do this from the GitHub web UI easily with the `Sync Fork` button. If you want to do this from the terminal, you can add a new `git remote` called `upstream`.
@@ -289,7 +289,7 @@ for free, so there is only one person who is able to merge pull requests at the
289
289
290
290
### Create a Pull Request
291
291
292
-
Now you'll be able to go to the [original repository link](https://github.com/ProfessionalLinuxUsersGroup/psc) and go to the "Pull Requests" tab and create a new pull request.
292
+
Now you'll be able to go to the [original repository link](https://github.com/ProfessionalLinuxUsersGroup/pcae) and go to the "Pull Requests" tab and create a new pull request.
293
293
Select your branch `unit1-worksheet`, and create a description and mention an issue by number (e.g., `#5`).
294
294
295
295
## Supporting Material
@@ -298,11 +298,11 @@ Select your branch `unit1-worksheet`, and create a description and mention an is
298
298
299
299
Below are links to the necessary materials to build out the course templates:
300
300
301
-
- Look over the [template pages wiki](https://github.com/ProfessionalLinuxUsersGroup/psc/wiki), or directly here:
Copy file name to clipboardExpand all lines: src/development.md
+46-74Lines changed: 46 additions & 74 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,15 +11,15 @@ are provided below. These guidelines are by no means a requirement or the only
11
11
set of procedures to locally develop on this project.
12
12
13
13
The examples, code, and commands provided below were developed using such
14
-
technologies as Ansible, containers, bash scripts, and more.
14
+
technologies as containers, bash scripts, and more.
15
15
16
16
## Build Dependencies
17
17
18
18
---
19
19
20
-
The ProLUG Security Course (psc) utilizes [mdBook](https://github.com/rust-lang/mdBook)
21
-
(markdown Book), a friendly and popular markdown utility that quickly exports
22
-
files and web structures for documentation or general website use cases.
20
+
The ProLUG Linux Administration Course (pcae) utilizes [mdBook](https://github.com/rust-lang/mdBook)
21
+
(markdown Book), a friendly and popular markdown utility that quickly exports static web files for
22
+
documentation or general website use cases.
23
23
24
24
Utilizing mdBook this course then deploys the exported web structure to a
25
25
[Git Pages workflow](https://docs.github.com/en/pages/getting-started-with-github-pages/using-custom-workflows-with-github-pages) and runner that then produces an easily navigable website.
@@ -35,97 +35,69 @@ Below is the current workflow that deploys the Git Page for the course:
35
35
To achieve this deployment locally the following environment and dependencies are
36
36
required:
37
37
38
-
<dl>
39
-
<dt>1. A localhost, this could be a container, virtual machine, or local machine</dt>
40
-
<dt>2. The following packages installed on such machine:</dt>
41
-
<dd>- httpd or apache</dd>
42
-
<dd>- git</dd>
43
-
<dd>- gcc</dd>
44
-
<dd>- rust</dd>
45
-
<dd>- cargo</dd>
46
-
<dt>3. And a clone of a ProLUG repository</dt>
47
-
</dl>
38
+
1. A localhost, this could be a container, virtual machine, or local machine
39
+
2. The following packages installed on such machine:
48
40
49
-
## Building, Deploying, and Developing Locally
50
-
51
-
---
52
-
53
-
Below is a set of scripts and Ansible-Playbooks that can quickly achieve this
54
-
environment in an automated fashion. They are only designed to "standup" these
55
-
machines, they are otherwise unintelligent and will not manage or cleanup
0 commit comments