├── .env ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src ├── config.ts └── main.ts └── tsconfig.json /.env: -------------------------------------------------------------------------------- 1 | APP_URL=https://www.example.com 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /package-lock.json 3 | /dist/ 4 | /release 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akl7777777/ShellApp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akl7777777/ShellApp/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akl7777777/ShellApp/HEAD/package.json -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akl7777777/ShellApp/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akl7777777/ShellApp/HEAD/src/main.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akl7777777/ShellApp/HEAD/tsconfig.json --------------------------------------------------------------------------------