The Argus-frontend provides a graphical web interface to use with Argus. It has been built using React with TypeScript. The backend can be found at https://github.com/Uninett/Argus.
Here's how to get started with development.
- Argus backend
- Node.js with npm
Set up the Argus backend according to the instructions in its repository (https://github.com/Uninett/Argus).
Furthermore, Node.js is required. We also use the Node Package Manager (npm), which comes bundled with Node.js.
Optionally, you can forego a full installation of Node.js and npm on your local system, and instead opt to run a complete Argus setup using Docker Compose. If so, skip directly to the Install and startup section.
Installation procedures are as follows:
Use the Terminal app (located at /Applications/Utilities/Terminal.app
).
Install Homebrew with the following command.
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
Then run
brew install node
to start the installation.
Open a terminal and run the following commands:
sudo apt-get install python-software-properties
sudo add-apt-repository ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install nodejs
Download the Node.js installer from http://nodejs.org/ and follow the installation instructions provided on the website.
Make sure that the git
command is available in your PATH.
After installation, test your Node.js with the following commands:
$ node --version
v10.11.0
$ npm --version
6.4.1
You successfully installed Node.js! Now let's continue to Argus frontend.
To download Argus frontend and install all required dependencies, run
git clone https://github.com/Uninett/Argus-frontend
cd Argus-frontend
npm install
Afterwards, use
npm start
to start the app in development mode. This will open your browser at http://localhost:3000 or similar.
Congrats, you now have the Argus frontend up and running!
Note that the website will automatically reload as you edit the code.
Configuration options for the Argus frontend are located in src/config.tsx
. All of these options can be set using environment variables when running the frontend under the Node server (or in Docker Compose). However, for production deployment, you would normally build the application and serve all the resulting static files using a regular web server, like Apache or Nginx; in this case, config.tsx
cannot read server environment varibles, and should be hard coded instead.
These environment variables are available:
- REACT_APP_BACKEND_URL
- The base URL to the Argus API server
- REACT_APP_ENABLE_WEBSOCKETS_SUPPORT
- Set to
true
to enable subscriptions to realtime incident updates - REACT_APP_BACKEND_WS_URL
- If you enable websocket support, this must be set to the backend's websocket URL. This value may depend on whether your deployment splits the HTTP server and the Web Socket servers into two components. Typically, if the backend HTTP server is
https://argus-api.example.org/
, this value could bewss://argus-api.example.org/ws
. - REACT_APP_USE_SECURE_COOKIE
- Set explicitly to
false
to disable the use of secure cookies. Typically only useful when deploying the development environment using non-TLS servers/regular HTTP. - REACT_APP_DEBUG
- Set to
true
if you want debug output from the application. - REACT_APP_DEFAULT_AUTO_REFRESH_INTERVAL
- Set to the default number of seconds between each auto refresh
- REACT_APP_COOKIE_DOMAIN
- Ignore it if Argus frontend and backend are deployed on the same domain. Otherwise, set it to the same value as
ARGUS_COOKIE_DOMAIN
variable on the backend.
These environment variables are optional:
This repository contains a docker-compose.yml
definition to run all the backend components as services, while the Argus frontend runs directly off the checked out source code using npm. If you have Docker Compose on your system, run these commands to get everything up and running:
export UID
docker-compose up
(the export UID
step is to ensure the Argus frontend container runs using your system UID, so it doesn't produce root-owned files in the mounted source code directory).
Your Argus frontend should now be served on http://localhost:8080
, while your Argus API server should be served on http://localhost:8000
. As with running npm
locally, the website should automatically reload as you edit the code.
The default setup will install the latest version of the Argus API server from the master branch. If you need to customize which tag or branch to install, you can change the BRANCH
argument in docker-compose.yml
(or preferably implement your own docker-compose.override.yml
).
Given that Argus-frontend is installed and configured as described above, the following command can be used to run all the tests:
npm test
To run test files individually the following command can be used:
npm test -- nameOfTestFile
To run a single test and skip all the others, the following command can be used:
npm test -- -t "testName"
If you get the error message "React Native Error: ENOSPC: System limit for number of file watchers reached" (the code will still run, but tests might not), your version of React is probably not cleaning up its inotify watchers properly.
A temporary fix that always works is to reset the node_modules
directory:
rm -rf node_modules
npm install
.. but the error will eventually be back.
A permanent fix for some Linuxes is to increase the value of
fs.inotify.max_user_watches
in /etc/sysctl.conf
. It's a number that is
divisible by 540 on 32bit systems and 1024 on 64bit-systems. The max is
524288.
The folder structure of this project consists of components and views.
Each view component consists of other components.
App.js
handles the routing to each view component that is displayed on the web app.
We use prettier for JavaScript auto-formatting.
We recommend using an editor plugin to automatically format code on save, like prettier-atom or vim-prettier.
Another option to format the code is the yarn prettier
command.
Lint errors will be displayed on the console while the app is running.
The file ColorScheme.css
defines the colors used in the project.
Additionally, there is one CSS file for each component.