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: docs/activity0.md
+15-41
Original file line number
Diff line number
Diff line change
@@ -5,13 +5,12 @@ Before starting the workshop, make sure you have all the necessary software inst
5
5
## **Prerequisites**
6
6
7
7
1.**Docker Desktop**
8
-
2.**Python** with `pipenv`
9
-
3.**Code Editor** (VS Code recommended)
10
-
4.**Administrator Access** (to update the hosts file)
8
+
2.**Code Editor** (VS Code recommended)
9
+
3.**Administrator Access** (to update the hosts file)
11
10
12
11
### Optional
13
12
14
-
This project uses TailwindCSS to the visual design. If you wish to modify the user experience then you may need;
13
+
This project uses TailwindCSS to the visual design. If you wish to modify the UI then you may need;
15
14
1.**Node.js** (to run `npx`)
16
15
2.**TailwindCSS CLI**
17
16
@@ -44,39 +43,7 @@ docker --version
44
43
45
44
---
46
45
47
-
## **2. Python with Pipenv**
48
-
49
-
Pipenv is used to manage Python environments and dependencies.
50
-
51
-
### **macOS Installation**:
52
-
1. Install Python 3 from [python.org](https://www.python.org/downloads/).
53
-
2. Open a terminal and install Pipenv:
54
-
55
-
```bash
56
-
brew install pipenv
57
-
```
58
-
59
-
If you don’t have Homebrew installed, you can install it from [brew.sh](https://brew.sh/).
60
-
61
-
### **Windows Installation**:
62
-
1. Download Python 3 from [python.org](https://www.python.org/downloads/).
63
-
2. During installation, ensure that **"Add Python to PATH"** is checked.
64
-
3. Open PowerShell and install Pipenv:
65
-
66
-
```bash
67
-
pip install --user pipenv
68
-
```
69
-
70
-
### **Verify Installation**:
71
-
To check if Pipenv is installed correctly, run:
72
-
73
-
```bash
74
-
pipenv --version
75
-
```
76
-
77
-
---
78
-
79
-
## **3. Code Editor**
46
+
## **2. Code Editor**
80
47
81
48
Bring your favorite code editor to the workshop. We recommend using **Visual Studio Code (VS Code)** for the best experience.
82
49
@@ -87,7 +54,7 @@ VS Code supports extensions for both Python and Node.js development, making it a
87
54
88
55
---
89
56
90
-
## **4. Administrator Access to Update Hosts File**
57
+
## **3. Administrator Access to Update Hosts File**
91
58
92
59
You will need administrator access to modify the `hosts` file on your machine. This is necessary to map the workshop domains (`platform.ltitraining.net` and `tool.ltitraining.net`) to your local environment.
93
60
@@ -112,7 +79,15 @@ Make sure to add the following lines to the `hosts` file:
112
79
113
80
---
114
81
115
-
## **5. Node.js (with npx)**
82
+
If the above files are installed, You should be all set for the workshop.
83
+
84
+
85
+
# Optional Dependencies
86
+
87
+
The following steps are not necessary for the workshop, but they might be useful in development if you want to change the CSS in the example projects;
88
+
89
+
90
+
## **1. Node.js (with npx)**
116
91
117
92
Node.js is required to run JavaScript-based tools like `npx`.
118
93
@@ -130,7 +105,7 @@ npx --version
130
105
131
106
---
132
107
133
-
## **6. TailwindCSS CLI**
108
+
## **2. TailwindCSS CLI**
134
109
135
110
TailwindCSS is a utility-first CSS framework which some of the samples use. You may need its CLI for the workshop..
Copy file name to clipboardexpand all lines: docs/activity1.md
+16-53
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,8 @@ By the end of this activity, you will have cloned the workshop's git repository
13
13
- Docker and Docker Compose installed on your machine.
14
14
- Access to modify the local `/etc/hosts` file (administrator privileges may be required).
15
15
16
+
See the [Guide for setting up the prerequisites](activity0.md) if you need further assistance.
17
+
16
18
---
17
19
18
20
### **Steps to Follow:**
@@ -35,34 +37,7 @@ Once the repository is cloned, navigate to the `environment/` directory where th
35
37
cd environment
36
38
```
37
39
38
-
#### 3. **Check the Docker Compose File**
39
-
40
-
In this step, take a look at the `docker-compose.yml` file, which defines the services for running Moodle, the proxy server, and the database. Open it in your favorite text editor (e.g., `nano`, `vim`, or a code editor like VS Code).
41
-
42
-
```
43
-
Open docker-compose.yml in your Code Editor
44
-
```
45
-
46
-
Ensure that the file includes services for:
47
-
-**Moodle** (Moodle Docker image)
48
-
-**MariaDB** (Database service)
49
-
-**Nginx** (Proxy server with SSL certificates)
50
-
51
-
You should also see the environment variables set for Moodle and MariaDB in this file.
52
-
53
-
**Note:** This is just a local development project and is not production-ready. Please do not use this in production.
54
-
55
-
#### 4. **Verify the Nginx Configuration**
56
-
57
-
Open and review the `nginx.conf` file to confirm that it correctly handles SSL for `platform.ltitraining.net` and `tool.ltitraining.net`.
58
-
59
-
```
60
-
Review nginx.conf in your code editor
61
-
```
62
-
63
-
This file includes SSL configurations for the Moodle platform and the LTI tool, routing traffic via the reverse proxy.
64
-
65
-
#### 5. **Update the Local Hosts File**
40
+
#### 3. **Update the Local Hosts File**
66
41
67
42
In this setup, we will use 2 real domains with real (browser-trusted) SSL certificates. We will configure the routing on your PC to route these domains locally within your machine. This allows us to focus on LTI development without the complexities of browser security getting in the way.
68
43
@@ -96,42 +71,23 @@ To ensure that the domains `platform.ltitraining.net` and `tool.ltitraining.net`
96
71
97
72
This step ensures that your browser correctly resolves these domains to your local machine when you access them.
98
73
99
-
#### 6. **Start the Docker Environment**
74
+
#### 4. **Start the Docker Environment**
100
75
101
76
Once you’ve reviewed the configurations, start the Docker containers using Docker Compose. This will spin up Moodle, MariaDB, and Nginx services.
102
77
103
78
```bash
104
-
docker-compose up -d
79
+
docker-compose up --build
105
80
```
106
81
107
82
This command will:
108
83
- Build and start all the services defined in the `docker-compose.yml` file.
109
-
- Run the services in detached mode (`-d`), so they run in the background.
84
+
- Configures and runs the services
85
+
- Please note: This may take a few mins to complete the first time.
110
86
111
-
#### 7. **Check the Running Containers**
112
87
113
-
To verify that everything is running correctly, check the status of the Docker containers.
88
+
#### 5. **Run through the Checklist**
114
89
115
-
```bash
116
-
docker ps
117
-
```
118
-
119
-
You should see the Moodle, MariaDB, and Nginx services running.
120
-
121
-
#### 8. **Access Moodle**
122
-
123
-
Open your browser and access Moodle using the following URL:
124
-
125
-
```
126
-
https://platform.ltitraining.net
127
-
```
128
-
129
-
If everything is set up correctly, you should see the Moodle login page or the platform's homepage.
130
-
131
-
You should be able to login using the default username and password;
132
-
133
-
- user: user
134
-
- password: bitnami
90
+
To verify that everything is running correctly, complete the checks the [Checklist](checklist.md)
135
91
136
92
---
137
93
@@ -151,6 +107,13 @@ You should be able to login using the default username and password;
151
107
152
108
---
153
109
110
+
### **Questions & Common Tasks:**
111
+
112
+
To understand how to start, stop, reset, clean up, details are outlined in the [Common Tasks Document](common_tasks.md)
113
+
114
+
---
115
+
154
116
### **Activity Summary:**
155
117
You have now cloned the repository, updated your hosts file, started the Docker environment, and accessed Moodle via the `platform.ltitraining.net` domain. You are ready to move on to the next activity, where you will configure the Moodle LTI tool and begin developing.
If the containers are not running, use `docker-compose up` to start them.
31
31
32
32
---
33
-
34
-
### **Test 2: Access Moodle**
33
+
### **Test 2: Access Test Flask Application**
35
34
36
35
1. Open your browser.
37
36
2. Navigate to the following URL:
38
37
39
38
```
40
-
https://platform.ltitraining.net
39
+
https://tool.ltitraining.net
41
40
```
42
41
43
-
You should see the Moodle login page. If the page doesn’t load, double-check that the containers are running, and ensure that your `/etc/hosts` file is correctly configured to resolve `platform.ltitraining.net` to `127.0.0.1`.
42
+
You should see a success message from the Flask Application page. If the page doesn’t load, double-check that the containers are running, and ensure that your `/etc/hosts` file is correctly configured to resolve `tool.ltitraining.net` to `127.0.0.1`.
44
43
45
-
---
46
44
47
-
## **2. Python and Pipenv Environment**
45
+
---
48
46
49
-
### **Test 3: Verify Python Environment**
47
+
### **Test 3: Access Moodle**
50
48
51
-
1. In the terminal or PowerShell, activate the Python environment with Pipenv:
49
+
1. Open your browser.
50
+
2. Navigate to the following URL:
52
51
53
-
```bash
54
-
pipenv shell
55
52
```
56
-
57
-
2. Once inside the environment, verify that Python is working by running:
58
-
59
-
```bash
60
-
python --version
53
+
https://platform.ltitraining.net
61
54
```
62
55
63
-
This should return the Python version, confirming that the environment is correctly set up.
64
-
65
-
---
66
-
67
-
### **Test 4: Run the Python Code**
68
-
69
-
Navigate to the `exercise4/` directory and run the Flask app (or another Python script) to ensure everything is working:
70
-
71
-
```bash
72
-
cd exercise1
73
-
python app.py
74
-
```
56
+
You should see the Moodle login page. If the page doesn’t load, double-check that the containers are running, and ensure that your `/etc/hosts` file is correctly configured to resolve `platform.ltitraining.net` to `127.0.0.1`.
75
57
76
-
You should see the Flask app running, and it will provide a URL (typically `http://127.0.0.1:3000/`) where you can access the app in your browser.
77
58
78
59
---
79
60
80
61
81
62
## **Summary of Quick Tests**:
82
63
-**Test 1**: Check Docker container status.
83
-
-**Test 2**: Access Moodle via `https://platform.ltitraining.net`.
84
-
-**Test 3**: Verify the Python environment.
85
-
-**Test 4**: Run the Python Flask app.
64
+
-**Test 2**: Access Test Application via `https://tool.ltitraining.net`.
65
+
-**Test 3**: Access Moodle via `https://platform.ltitraining.net`.
86
66
87
67
Running through these tests will ensure that everything is correctly set up and functioning for the workshop.
0 commit comments