aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Tananaev <anton@traccar.org>2022-07-01 07:55:29 -0700
committerAnton Tananaev <anton@traccar.org>2022-07-01 07:55:29 -0700
commit8ca61941a8854a9f0d2862efd83c27f19abe92e6 (patch)
tree30ce01ae8ad7648738810907c704839b69f9bc1d
parentd7a3278718a60826307b3d172b4cd83ef3028c52 (diff)
downloadtrackermap-web-8ca61941a8854a9f0d2862efd83c27f19abe92e6.tar.gz
trackermap-web-8ca61941a8854a9f0d2862efd83c27f19abe92e6.tar.bz2
trackermap-web-8ca61941a8854a9f0d2862efd83c27f19abe92e6.zip
Move docs to the website
-rw-r--r--README.md23
-rw-r--r--modern/README.md16
2 files changed, 8 insertions, 31 deletions
diff --git a/README.md b/README.md
index 9fdec8c3..2cf67d79 100644
--- a/README.md
+++ b/README.md
@@ -4,9 +4,13 @@
Traccar is open source server for various GPS tracking devices. This repository contains web interface for the Traccar platform. For back-end checkout [main Traccar repository](https://github.com/tananaev/traccar).
-## New version
+## Modern web app
-A new version of the web app is under development alongside original web app. It will be available under Apache open source license. It uses React, Material UI and other modern web frameworks. Check [modern](https://github.com/traccar/traccar-web/tree/master/modern) folder for more details.
+New web app for Traccar. It uses modern technologies like React, Material UI etc. For more information on how to build it please check the [modern app documentation](https://www.traccar.org/build-web-app/).
+
+## Legacy web app
+
+Old web app for Traccar. It uses Sencha Ext JS framework. For more information on how to build it please check [the legacy app documentation](https://www.traccar.org/build-extjs/).
## Team
@@ -15,17 +19,6 @@ A new version of the web app is under development alongside original web app. It
## License
- GNU General Public License, Version 3
-
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
+Modern app uses Apache License, Version 2.0 license.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
+Legacy app uses The GNU General Public License v3.0 license.
diff --git a/modern/README.md b/modern/README.md
deleted file mode 100644
index 866dfd37..00000000
--- a/modern/README.md
+++ /dev/null
@@ -1,16 +0,0 @@
-This is a new version of the Traccar web app. It is still in a very early stage of development.
-
-It uses [React](https://reactjs.org/), [Material UI](https://material-ui.com/) and [MapLibre GL JS](https://maplibre.org/). Feedback and contributions are welcome.
-
-To run the project in development mode:
-
-- Make sure you have Traccar backend running.
-- Install dependencies using `npm install` command
-- Run development server using `npm start` command
-
-To change the backend server URL:
-
-- Copy the content of the .env to .env.local (new file)
-- Change REACT_APP_URL_NAME to your backend URL. Example: 'example.com:8081'
-
-Project was created using [Create React App](https://github.com/facebook/create-react-app). For more information see [user guide](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md).