|
50 | 50 | └─ src
|
51 | 51 | ```
|
52 | 52 |
|
53 |
| -4. In the .env file, configure the following environment variables for Twilio API, Slack Webhook, and Postgres URI. Refer to [Twilio](#-Twilio) setup section below. The Postgres URI is the only field that is required, others are optional. |
| 53 | +4. In the .env file, configure the following environment variables for Twilio API, Slack Webhook, and Postgres URI. Refer to [Twilio](#-Twilio) setup section below. The Postgres URI is the only field that is required, others are optional. Create your own database to house user information and insert your URI in this file. |
54 | 54 | ```js
|
55 | 55 | // .env
|
56 | 56 | TWILIO_NUMBER = ''
|
@@ -98,13 +98,30 @@ You are all set! Now just enter the following command to start up Docketeer!
|
98 | 98 | npm run dev
|
99 | 99 | ```
|
100 | 100 |
|
101 |
| -To log in as sysadmin, use the following credentials |
| 101 | +For now, the sign up function will create a System Admin user. |
| 102 | + |
| 103 | + |
| 104 | +## Returning Users: Version Update |
| 105 | +1. Navigate to the project directory and **add upstream** this [repository](https://github.com/open-source-labs/Docketeer.git) to your cloned fork. |
102 | 106 | ```
|
103 |
| -username: sysadmin |
104 |
| -password: belugas |
| 107 | +git remote add upstream https://github.com/open-source-labs/Docketeer.git |
| 108 | +``` |
| 109 | + |
| 110 | +2. Pull down the updates. |
| 111 | +``` |
| 112 | +git pull origin upstream |
| 113 | +``` |
| 114 | + |
| 115 | +3. Install new dependencies. |
| 116 | +``` |
| 117 | +npm install |
| 118 | +``` |
| 119 | + |
| 120 | +4. You are all set! Now just enter the following command to start up Docketeer! |
| 121 | +``` |
| 122 | +npm run dev |
105 | 123 | ```
|
106 | 124 |
|
107 |
| -To change the system admin password, create a new user with your preferred credentials, then change the role and role_id manually in the database. |
108 | 125 |
|
109 | 126 |
|
110 | 127 | ## Twilio setup
|
@@ -136,15 +153,15 @@ You can view a list of running and exited containers, available images, volume h
|
136 | 153 |
|
137 | 154 | ### ➮ Live Metrics
|
138 | 155 | Users have real-time access to the total amount of resources (CPU, memory usage) that your containers are using and total block IO bytes by image over specific time periods.
|
139 |
| - |
| 156 | + |
140 | 157 |
|
141 | 158 | ### ➮ Uploading
|
142 | 159 | Within the Image and Docker Compose tab, you pull images from DockerHub by providing `repo:version` or uploading a `.yml` file.
|
143 | 160 |
|
144 | 161 | ### ➮ Process Logs
|
145 | 162 | View process logs from any number of running or stopped containers. The table is both exportable and sortable by any parameter. You can filter logs by specifying the number of logs that you wish to receive (tail) as well as time (since). Process logs will help you analyze and debug problems faster by offering insights into what went wrong.
|
146 | 163 |
|
147 |
| - |
| 164 | + |
148 | 165 |
|
149 | 166 | <br> For a full demo of Docketeer's features, visit [docketeer.org](https://www.docketeer.org/demo).
|
150 | 167 |
|
@@ -174,6 +191,10 @@ npm run test
|
174 | 191 | Read our [contributing guide](https://github.com/open-source-labs/Docketeer/blob/master/CONTRIBUTING.md) for more information on how to purpose bugfixes and improvements to Docketeer.
|
175 | 192 |
|
176 | 193 | ### Authors
|
| 194 | +- Nathan Cho [@nathanycho](https://github.com/nathanycho) | [LinkedIn](https://www.linkedin.com/in/nathanycho/) |
| 195 | +- Garima Bhatia [@GarimaB06](https://github.com/GarimaB06) | [LinkedIn](https://www.linkedin.com/in/garimab06/) |
| 196 | +- Eshaan Joshi [@eshaan32](https://github.com/eshaan32) | [LinkedIn](https://www.linkedin.com/in/eshaanjoshi/) |
| 197 | +- Jonathan Wong [@WongJonathann](https://github.com/WongJonathann) | [LinkedIn](https://www.linkedin.com/in/jon-wong-00/) |
177 | 198 | - Sarah Moosa [@Sbethm](https://github.com/Sbethm) | [LinkedIn](https://www.linkedin.com/in/sarah-moosa-4b05721b6/)
|
178 | 199 | - Cedar Cooper [@CedarCooper](https://github.com/CedarCooper) | [LinkedIn](https://www.linkedin.com/in/cedar-cooper/)
|
179 | 200 | - Tiffany Chau [@tiffanynchau](https://github.com/tiffanynchau/) | [LinkedIn](https://www.linkedin.com/in/tiffanynchau/)
|
|
0 commit comments