2a32489617b4b3f12a7892e40f436f304b88e8ae
Update version from 1.0.2-SNAPSHOT to 1.0.3-SNAPSHOT
Overview (ZH, EN)
This project is a front-end web UI of Oxygen Toolbox and needs to be used with the back-end API.
Requires
- Web Server (e.g. Nginx, Apache httpd)
- API of Oxygen Toolbox (v1.0.0 or later versions)
Related projects
Desktop Client of Oxygen Toolbox
Android Client of Oxygen Toolbox
Quick Start
1. Download the latest packaged production version from Releases page
2. Upload the file oxygen-ui-*.tar.gz or oxygen-ui-*.zip to the web server and unzip it
3. Configure pseudo-static
Nginx:
server {
...
index index.html
location / {
try_files $uri $uri/ /index.html;
}
...
}
Apache httpd (.htaccess):
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>
Description
Languages
TypeScript
99.5%
HTML
0.3%
JavaScript
0.1%
Shell
0.1%