Skip to content

Commit 208e913

Browse files
committed
simplified setup - stripped out all tje python dependencies and moved it to docker.
1 parent 84af6e2 commit 208e913

File tree

7 files changed

+97
-177
lines changed

7 files changed

+97
-177
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -159,3 +159,4 @@ pnpm-lock.yaml
159159
.DS_Store
160160
Thumbs.db
161161
*.swp
162+
docs/images/.$LTIBootcampPython.drawio.bkp

activities/configs/registrations.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"https://platform.ltitraining.net": [{
33
"default": true,
4-
"client_id": "rF3j1LoERzBuKpj",
4+
"client_id": "TzanJBXNJJpnjnI",
55
"auth_login_url": "https://platform.ltitraining.net/mod/lti/auth.php",
66
"auth_token_url": "https://platform.ltitraining.net/mod/lti/token.php",
77
"auth_audience": null,

docs/activity0.md

+15-41
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@ Before starting the workshop, make sure you have all the necessary software inst
55
## **Prerequisites**
66

77
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)
1110

1211
### Optional
1312

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;
1514
1. **Node.js** (to run `npx`)
1615
2. **TailwindCSS CLI**
1716

@@ -44,39 +43,7 @@ docker --version
4443

4544
---
4645

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**
8047

8148
Bring your favorite code editor to the workshop. We recommend using **Visual Studio Code (VS Code)** for the best experience.
8249

@@ -87,7 +54,7 @@ VS Code supports extensions for both Python and Node.js development, making it a
8754

8855
---
8956

90-
## **4. Administrator Access to Update Hosts File**
57+
## **3. Administrator Access to Update Hosts File**
9158

9259
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.
9360

@@ -112,7 +79,15 @@ Make sure to add the following lines to the `hosts` file:
11279

11380
---
11481

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)**
11691

11792
Node.js is required to run JavaScript-based tools like `npx`.
11893

@@ -130,7 +105,7 @@ npx --version
130105

131106
---
132107

133-
## **6. TailwindCSS CLI**
108+
## **2. TailwindCSS CLI**
134109

135110
TailwindCSS is a utility-first CSS framework which some of the samples use. You may need its CLI for the workshop..
136111

@@ -155,7 +130,6 @@ tailwindcss --version
155130

156131
Ensure that the following tools are installed:
157132
- Docker Desktop
158-
- Python 3 with Pipenv
159133
- A code editor (VS Code recommended)
160134
- Administrator access to modify the hosts file
161135

docs/activity1.md

+16-53
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ By the end of this activity, you will have cloned the workshop's git repository
1313
- Docker and Docker Compose installed on your machine.
1414
- Access to modify the local `/etc/hosts` file (administrator privileges may be required).
1515

16+
See the [Guide for setting up the prerequisites](activity0.md) if you need further assistance.
17+
1618
---
1719

1820
### **Steps to Follow:**
@@ -35,34 +37,7 @@ Once the repository is cloned, navigate to the `environment/` directory where th
3537
cd environment
3638
```
3739

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**
6641

6742
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.
6843

@@ -96,42 +71,23 @@ To ensure that the domains `platform.ltitraining.net` and `tool.ltitraining.net`
9671

9772
This step ensures that your browser correctly resolves these domains to your local machine when you access them.
9873

99-
#### 6. **Start the Docker Environment**
74+
#### 4. **Start the Docker Environment**
10075

10176
Once you’ve reviewed the configurations, start the Docker containers using Docker Compose. This will spin up Moodle, MariaDB, and Nginx services.
10277

10378
```bash
104-
docker-compose up -d
79+
docker-compose up --build
10580
```
10681

10782
This command will:
10883
- 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.
11086

111-
#### 7. **Check the Running Containers**
11287

113-
To verify that everything is running correctly, check the status of the Docker containers.
88+
#### 5. **Run through the Checklist**
11489

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)
13591

13692
---
13793

@@ -151,6 +107,13 @@ You should be able to login using the default username and password;
151107

152108
---
153109

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+
154116
### **Activity Summary:**
155117
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.
156118

119+

docs/checklist.md

+16-36
Original file line numberDiff line numberDiff line change
@@ -20,68 +20,48 @@ docker-compose ps
2020
You should see the status as `Up` for the Moodle, MariaDB, and Nginx containers. For example:
2121

2222
```bash
23-
Name Command State Ports
24-
---------------------------------------------------------------------
25-
nginx-proxy /docker-entrypoint.sh ngin ... Up 0.0.0.0:443->443/tcp
26-
mariadb /opt/bitnami/scripts/mari ... Up 3306/tcp
27-
platform.dev /opt/bitnami/scripts/mood ... Up 8080/tcp
23+
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS
24+
a9e9b803832b environment-tool "/usr/src/app/entryp…" 5 hours ago Up 5 hours 0.0.0.0:3000->...
25+
ee39addd9116 nginx:alpine "/docker-entrypoint." 7 hours ago Up 7 hours 80/tcp, 0.0.0.0:443->...
26+
f6f32f1edc97 bitnami/moodle:4.5.0 "/opt/bitnami/script…" 7 hours ago Up 7 hours 0.0.0.0:8080->...
27+
ec1c0138c758 bitnami/mariadb:10.6 "/opt/bitnami/script…" 7 hours ago Up 7 hours 3306...
2828
```
2929

3030
If the containers are not running, use `docker-compose up` to start them.
3131

3232
---
33-
34-
### **Test 2: Access Moodle**
33+
### **Test 2: Access Test Flask Application**
3534

3635
1. Open your browser.
3736
2. Navigate to the following URL:
3837

3938
```
40-
https://platform.ltitraining.net
39+
https://tool.ltitraining.net
4140
```
4241

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`.
4443

45-
---
4644

47-
## **2. Python and Pipenv Environment**
45+
---
4846

49-
### **Test 3: Verify Python Environment**
47+
### **Test 3: Access Moodle**
5048

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:
5251

53-
```bash
54-
pipenv shell
5552
```
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
6154
```
6255

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`.
7557

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.
7758

7859
---
7960

8061

8162
## **Summary of Quick Tests**:
8263
- **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`.
8666

8767
Running through these tests will ensure that everything is correctly set up and functioning for the workshop.

0 commit comments

Comments
 (0)