Project Amber web / mobile client https://git.tdem.in/tdemin/amber
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
Timur Demin 083ae25e98
Update main API path in README.md
4 years ago
doc Add Docker support 4 years ago
public Change the theme color to #ffffff 4 years ago
src Add a sort helper 4 years ago
.dockerignore Add Docker support 4 years ago
.drone.yml Add test runner to Drone pipeline 4 years ago
.editorconfig Add convenience configurations 4 years ago
.eslintrc.json Add initial support for datetime editing in editor view 4 years ago
.gitignore Remove VSCode settings from the Git tree 4 years ago
.prettierignore Cleanup & make coding comfier 4 years ago
.prettierrc.json Add convenience configurations 4 years ago
Dockerfile Reorder build args in the Dockerfile 4 years ago
LICENSE.txt Add license 4 years ago
README.md Update main API path in README.md 4 years ago
package.json Bump v0.1.1 4 years ago
tsconfig.json Add convenience configurations 4 years ago
yarn.lock Update dependencies 4 years ago

README.md

Amber Web

The web client for Project Amber, made with React, Redux, and TypeScript.

Running the app locally

Development

Simply run:

% yarn install --dev
% yarn start

Set the REACT_APP_APIURI environment variable in case you're testing against a local server. It should point to the base URI for all API requests, namely https://amber.h.tdem.in/api/v0.

Docker

Run:

% docker build . -t amber_web
% docker run -it -p 8080:80 amber_web

If you're running your own API server, be sure to set the REACT_APP_APIURI flag when building:

% docker build . -t amber_web --build-arg REACT_APP_APIURI=https://your.tld/api

Development

The source code of this app is formatted automatically with Prettier. Be sure to run yarn beautify and yarn lint before sending a pull request!

License

This program is MIT-licensed. See LICENSE.txt for details.