35 lines
1.1 KiB
Markdown
35 lines
1.1 KiB
Markdown
# Ultraviolet
|
|
Ultraviolet application
|
|
|
|
[](https://heroku.com/deploy/?template=https://github.com/titaniumnetwork-dev/uv-app)
|
|
[](https://replit.com/github/titaniumnetwork-dev/uv-app)
|
|
|
|
# Steps
|
|
|
|
Installing on machine
|
|
|
|
```
|
|
git clone https://github.com/titaniumnetwork-dev/uv-app/
|
|
cd uv-app
|
|
git submodule update --init
|
|
npm install
|
|
npm start
|
|
```
|
|
On Repl, make sure to run the `git submodule update --init` command in shell.
|
|
|
|
# Ultraviolet Config
|
|
|
|
`uv.config.js`
|
|
|
|
```javascript
|
|
self.__uv$config = {
|
|
prefix: '/sw/', // Proxy url prefix
|
|
bare: '/bare/', // Bare server location
|
|
encodeUrl: Ultraviolet.codec.xor.encode, // URL Encoding function
|
|
decodeUrl: Ultraviolet.codec.xor.decode, // Decode URL function
|
|
handler: '/uv.handler.js', // Handler script
|
|
bundle: '/uv.bundle.js', // Bundled script
|
|
config: '/uv.config.js', // Configuration script
|
|
sw: '/uv.sw.js', // Service Worker Script
|
|
};
|
|
```
|