├── .env.example ├── .gitignore ├── .nvmrc ├── Dockerfile ├── README.md ├── docker-compose.yml ├── hello-ooba.js ├── package.json ├── readme └── hello-ooba.png └── setup.sh /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashalarmist/hello-ooba/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env 3 | ooba_data 4 | tmp 5 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18.16.1 -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashalarmist/hello-ooba/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashalarmist/hello-ooba/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashalarmist/hello-ooba/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /hello-ooba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashalarmist/hello-ooba/HEAD/hello-ooba.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashalarmist/hello-ooba/HEAD/package.json -------------------------------------------------------------------------------- /readme/hello-ooba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashalarmist/hello-ooba/HEAD/readme/hello-ooba.png -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashalarmist/hello-ooba/HEAD/setup.sh --------------------------------------------------------------------------------