Skip to content

Commit 7cbfdc2

Browse files
authored
Update README.md
1 parent 5174cbb commit 7cbfdc2

File tree

1 file changed

+34
-10
lines changed

1 file changed

+34
-10
lines changed

README.md

+34-10
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,40 @@ Linkry is an internal tool for shortening links and reducing link rot by redirec
44

55
## Installation
66

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:
910
```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):
28+
```yml
29+
version: '3'
30+
services:
31+
linkry:
32+
image: ghcr.io/acm-uiuc/linkry:latest
33+
restart: on-failure
34+
environment:
35+
- DB_FILE=/usr/src/app/db.sqlite3
36+
ports:
37+
- "9215:9215"
38+
volumes:
39+
- ./.env:/usr/src/app/.env
40+
- ./db.sqlite3:/usr/src/app/db.sqlite3
1841
```
1942
2043
## Usage
@@ -29,3 +52,4 @@ Maintainer: Dev Singh (<[email protected]>)
2952
3053
## License
3154
[BSD 3-Clause](https://raw.githubusercontent.com/acm-uiuc/linkry/master/LICENSE)
55+

0 commit comments

Comments
 (0)