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
+34-10
Original file line number
Diff line number
Diff line change
@@ -4,17 +4,40 @@ Linkry is an internal tool for shortening links and reducing link rot by redirec
4
4
5
5
## Installation
6
6
7
-
Ensure that you have [Node](https://nodejs.org/en/) and [Yarn](https://yarnpkg.com/) installed on your machine. For non-ACM users, configure config.js to use your AAD tenant's client ID.
8
-
Then, run the following commands:
7
+
Pull the published Docker container using the appropriate version: `docker pull ghcr.io/acm-uiuc/linkry:latest`.
8
+
9
+
Create a `.env` file that contains the following keys:
9
10
```bash
10
-
yarn
11
-
export proto=http
12
-
export baseURL=localhost:9215
13
-
export SESSION_DB_FILE_LOC=$PWD
14
-
export SESSION_DB_FILE_NAME=db.sqlite3
15
-
export DB_FILE=db.sqlite3
16
-
export CLIENT_SECRET=<your azure AD secret here>
17
-
yarn dev
11
+
NODE_ENV=production # or development if in development mode
12
+
BASE_URL=go.acm.illinois.edu # production URL
13
+
BASE_PROTO=https # http vs. https
14
+
AAD_CLIENT_ID=0 # Client ID in Azure Active Directory (ensure idtoken flow is enabled).
15
+
AAD_TENANT_ID=0 # Azure AD Tenant ID
16
+
AAD_CLIENT_SECRET= # Azure AD client secret for respective client ID.
17
+
brandTitle=ACM Link Shortener # HTML title
18
+
brandLoginProvider=ACM # Custom name for AAD Auth Provider
19
+
brandLogoPath=https://go.acm.illinois.edu/static/img/white-banner.svg # path to banner logo
20
+
brandOrgHome=https://acm.illinois.edu # main home page
21
+
brandStatusURL=https://status.acm.illinois.edu # Status page
22
+
brandCopyrightOwner=ACM @ UIUC # Corporation Name
23
+
brandDomainHint=devksingh.com # Azure AD Domain Hint
24
+
DB_FILE=/usr/src/app/db.sqlite3 # where the DB of links is.
25
+
GROUPS_PERMITTED=ACM Link Shortener Admins, ACM Exec # Groups that can access the link shortener
26
+
```
27
+
Then, use the following docker-compose.yml in the same directory and run `docker-compose up` to start the application (it will be exposed on port 9215):
0 commit comments