forked from udacity/cd0039-Identity-and-Access-Management
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit a3a2f08
Showing
16 changed files
with
220 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
Copyright © 2012 - 2020, Udacity, Inc. | ||
|
||
Udacity hereby grants you a license in and to the Educational Content, including but not limited to homework assignments, programming assignments, code samples, and other educational materials and tools (as further described in the Udacity Terms of Use), subject to, as modified herein, the terms and conditions of the Creative Commons Attribution-NonCommercial- NoDerivs 3.0 License located at http://creativecommons.org/licenses/by-nc-nd/4.0 and successor locations for such license (the "CC License") provided that, in each case, the Educational Content is specifically marked as being subject to the CC License. | ||
Udacity expressly defines the following as falling outside the definition of "non-commercial": | ||
(a) the sale or rental of (i) any part of the Educational Content, (ii) any derivative works based at least in part on the Educational Content, or (iii) any collective work that includes any part of the Educational Content; | ||
(b) the sale of access or a link to any part of the Educational Content without first obtaining informed consent from the buyer (that the buyer is aware that the Educational Content, or such part thereof, is available at the Website free of charge); | ||
(c) providing training, support, or editorial services that use or reference the Educational Content in exchange for a fee; | ||
(d) the sale of advertisements, sponsorships, or promotions placed on the Educational Content, or any part thereof, or the sale of advertisements, sponsorships, or promotions on any website or blog containing any part of the Educational Material, including without limitation any "pop-up advertisements"; | ||
(e) the use of Educational Content by a college, university, school, or other educational institution for instruction where tuition is charged; and | ||
(f) the use of Educational Content by a for-profit corporation or non-profit entity for internal professional development or training. | ||
|
||
|
||
|
||
THE SERVICES AND ONLINE COURSES (INCLUDING ANY CONTENT) ARE PROVIDED "AS IS" AND "AS AVAILABLE" WITH NO REPRESENTATIONS OR WARRANTIES OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. YOU ASSUME TOTAL RESPONSIBILITY AND THE ENTIRE RISK FOR YOUR USE OF THE SERVICES, ONLINE COURSES, AND CONTENT. WITHOUT LIMITING THE FOREGOING, WE DO NOT WARRANT THAT (A) THE SERVICES, WEBSITES, CONTENT, OR THE ONLINE COURSES WILL MEET YOUR REQUIREMENTS OR EXPECTATIONS OR ACHIEVE THE INTENDED PURPOSES, (B) THE WEBSITES OR THE ONLINE COURSES WILL NOT EXPERIENCE OUTAGES OR OTHERWISE BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE, (C) THE INFORMATION OR CONTENT OBTAINED THROUGH THE SERVICES, SUCH AS CHAT ROOM SERVICES, WILL BE ACCURATE, COMPLETE, CURRENT, ERROR- FREE, COMPLETELY SECURE OR RELIABLE, OR (D) THAT DEFECTS IN OR ON THE SERVICES OR CONTENT WILL BE CORRECTED. YOU ASSUME ALL RISK OF PERSONAL INJURY, INCLUDING DEATH AND DAMAGE TO PERSONAL PROPERTY, SUSTAINED FROM USE OF SERVICES. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Purpose of This Repo | ||
|
||
This repo is meant to be used to keep things organized during content development and act as the source of truth for all projects and exercises related to this course. | ||
|
||
## Folder Structure | ||
|
||
### Lesson Folder | ||
|
||
This repo contains a folder for each `lesson` and one `project` folder. | ||
|
||
Example | ||
``` | ||
lesson-1-hello | ||
lesson-2-world | ||
lesson-3-foo | ||
lesson-4-bar | ||
project | ||
``` | ||
|
||
Each `lesson` folder is named using the naming convention of `lesson-#-name-of-lesson`. | ||
|
||
Example | ||
``` | ||
lesson-1-hello | ||
``` | ||
|
||
Four lesson folders have been provided as a template; However, you may need to add more or possibly use less than four depending on what is needed. | ||
|
||
If you require an additional lesson folder, you can make a copy of the folder and paste it into the root directory. | ||
|
||
### Exercises Folder | ||
|
||
Each `lesson` folder contains an `exercises` folder. This `exercises` folder should contain all files and instructions necessary for the exercises along with the solution. The solutions for these exercises will be shared with students. See the `README` in the `exercises` folder for information about folder structure. | ||
|
||
### Project Folder | ||
|
||
The `project` folder should contain all files and instructions necessary for setup. If possible, a set of instructions should be provided for both Udacity workspaces and a way to work locally (for both MacOS and Windows OS). At a minimum, one set of instructions should be provided. A `README` template has been provided in the project folder. This template layout should be used to write your README. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Purpose of This Directory | ||
|
||
This directory should contain any files and instructions necessary for exercises created for this lesson. | ||
|
||
## Folder Structure | ||
|
||
Each exercise should be contained in its own folder using the naming convention of `concept#-name-of-concept`. See example below: | ||
|
||
``` | ||
exercises | ||
|_ concept1-hello-world | ||
| |_ starter | ||
| | |_ exercise-files | ||
| |_ solution | ||
| | |_ solution_files | ||
|_ concept2-foo-bar | ||
| |_ starter | ||
| | |_ exercise-files | ||
| |_ solution | ||
| | |_ solution_files | ||
|_ README.md | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Purpose of this Folder | ||
|
||
This folder should contain the solution to the exercise. This would be added to a concept walking through the solution with the student for this exercise. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Purpose of this Folder | ||
|
||
This folder should contain the starter code and instructions for the exercise. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Purpose of This Directory | ||
|
||
This directory should contain any files and instructions necessary for exercises created for this lesson. | ||
|
||
## Folder Structure | ||
|
||
Each exercise should be contained in its own folder using the naming convention of `concept#-name-of-concept`. See example below: | ||
|
||
``` | ||
exercises | ||
|_ concept1-hello-world | ||
| |_ starter | ||
| | |_ exercise-files | ||
| |_ solution | ||
| | |_ solution_files | ||
|_ concept2-foo-bar | ||
| |_ starter | ||
| | |_ exercise-files | ||
| |_ solution | ||
| | |_ solution_files | ||
|_ README.md | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Purpose of this Folder | ||
|
||
This folder should contain the solution to the exercise. This would be added to a concept walking through the solution with the student for this exercise. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Purpose of this Folder | ||
|
||
This folder should contain the starter code and instructions for the exercise. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Purpose of This Directory | ||
|
||
This directory should contain any files and instructions necessary for exercises created for this lesson. | ||
|
||
## Folder Structure | ||
|
||
Each exercise should be contained in its own folder using the naming convention of `concept#-name-of-concept`. See example below: | ||
|
||
``` | ||
exercises | ||
|_ concept1-hello-world | ||
| |_ starter | ||
| | |_ exercise-files | ||
| |_ solution | ||
| | |_ solution_files | ||
|_ concept2-foo-bar | ||
| |_ starter | ||
| | |_ exercise-files | ||
| |_ solution | ||
| | |_ solution_files | ||
|_ README.md | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Purpose of this Folder | ||
|
||
This folder should contain the solution to the exercise. This would be added to a concept walking through the solution with the student for this exercise. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Purpose of this Folder | ||
|
||
This folder should contain the starter code and instructions for the exercise. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Purpose of This Directory | ||
|
||
This directory should contain any files and instructions necessary for exercises created for this lesson. | ||
|
||
## Folder Structure | ||
|
||
Each exercise should be contained in its own folder using the naming convention of `concept#-name-of-concept`. See example below: | ||
|
||
``` | ||
exercises | ||
|_ concept1-hello-world | ||
| |_ starter | ||
| | |_ exercise-files | ||
| |_ solution | ||
| | |_ solution_files | ||
|_ concept2-foo-bar | ||
| |_ starter | ||
| | |_ exercise-files | ||
| |_ solution | ||
| | |_ solution_files | ||
|_ README.md | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Purpose of this Folder | ||
|
||
This folder should contain the solution to the exercise. This would be added to a concept walking through the solution with the student for this exercise. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Purpose of this Folder | ||
|
||
This folder should contain the starter code and instructions for the exercise. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# README Template | ||
|
||
Below is a template provided for use when building your README file for students. | ||
|
||
# Project Title | ||
|
||
Project description goes here. | ||
|
||
## Getting Started | ||
|
||
Instructions for how to get a copy of the project running on your local machine. | ||
|
||
### Dependencies | ||
|
||
``` | ||
Examples here | ||
``` | ||
|
||
### Installation | ||
|
||
Step by step explanation of how to get a dev environment running. | ||
|
||
List out the steps | ||
|
||
``` | ||
Give an example here | ||
``` | ||
|
||
## Testing | ||
|
||
Explain the steps needed to run any automated tests | ||
|
||
### Break Down Tests | ||
|
||
Explain what each test does and why | ||
|
||
``` | ||
Examples here | ||
``` | ||
## Project Instructions | ||
|
||
This section should contain all the student deliverables for this project. | ||
|
||
## Built With | ||
|
||
* [Item1](www.item1.com) - Description of item | ||
* [Item2](www.item2.com) - Description of item | ||
* [Item3](www.item3.com) - Description of item | ||
|
||
Include all items used to build project. | ||
|
||
## License | ||
[License](../LICENSE.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Purpose of this Folder | ||
|
||
This folder should contain a fully working project. This will be added to the reviewer toolkit for reviewers to use. |