├── .firebaserc ├── .github └── workflows │ ├── frontend.yml │ └── server.yml ├── .gitignore ├── firebase.json ├── frontend ├── .gitignore ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── app.jsx │ ├── components │ ├── github.svg │ ├── line-login-button.jsx │ ├── line-messenger-alt.svg │ ├── logo-horizontal.jsx │ ├── logo-horizontal.svg │ ├── logo-stacked-white.jsx │ ├── logo-stacked-white.svg │ ├── share-ios.svg │ └── user-agent-detector.jsx │ ├── hooks │ └── auth.jsx │ ├── index.jsx │ └── pages │ ├── login.jsx │ ├── main.jsx │ ├── pay.jsx │ ├── scan.jsx │ └── welcome.jsx ├── hack └── start-emulators.sh └── server ├── .gitignore ├── package-lock.json ├── package.json └── src ├── api.js ├── auth.js ├── config.js ├── lib ├── db.js ├── line.js └── vend.js └── server.js /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/.firebaserc -------------------------------------------------------------------------------- /.github/workflows/frontend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/.github/workflows/frontend.yml -------------------------------------------------------------------------------- /.github/workflows/server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/.github/workflows/server.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/.gitignore -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/firebase.json -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/frontend/public/logo192.png -------------------------------------------------------------------------------- /frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/frontend/public/logo512.png -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/src/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/frontend/src/app.jsx -------------------------------------------------------------------------------- /frontend/src/components/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/frontend/src/components/github.svg -------------------------------------------------------------------------------- /frontend/src/components/line-login-button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/frontend/src/components/line-login-button.jsx -------------------------------------------------------------------------------- /frontend/src/components/line-messenger-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/frontend/src/components/line-messenger-alt.svg -------------------------------------------------------------------------------- /frontend/src/components/logo-horizontal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/frontend/src/components/logo-horizontal.jsx -------------------------------------------------------------------------------- /frontend/src/components/logo-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/frontend/src/components/logo-horizontal.svg -------------------------------------------------------------------------------- /frontend/src/components/logo-stacked-white.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/frontend/src/components/logo-stacked-white.jsx -------------------------------------------------------------------------------- /frontend/src/components/logo-stacked-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/frontend/src/components/logo-stacked-white.svg -------------------------------------------------------------------------------- /frontend/src/components/share-ios.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/frontend/src/components/share-ios.svg -------------------------------------------------------------------------------- /frontend/src/components/user-agent-detector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/frontend/src/components/user-agent-detector.jsx -------------------------------------------------------------------------------- /frontend/src/hooks/auth.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/frontend/src/hooks/auth.jsx -------------------------------------------------------------------------------- /frontend/src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/frontend/src/index.jsx -------------------------------------------------------------------------------- /frontend/src/pages/login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/frontend/src/pages/login.jsx -------------------------------------------------------------------------------- /frontend/src/pages/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/frontend/src/pages/main.jsx -------------------------------------------------------------------------------- /frontend/src/pages/pay.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/frontend/src/pages/pay.jsx -------------------------------------------------------------------------------- /frontend/src/pages/scan.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/frontend/src/pages/scan.jsx -------------------------------------------------------------------------------- /frontend/src/pages/welcome.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/frontend/src/pages/welcome.jsx -------------------------------------------------------------------------------- /hack/start-emulators.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/hack/start-emulators.sh -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env 3 | *.log 4 | -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/server/package.json -------------------------------------------------------------------------------- /server/src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/server/src/api.js -------------------------------------------------------------------------------- /server/src/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/server/src/auth.js -------------------------------------------------------------------------------- /server/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/server/src/config.js -------------------------------------------------------------------------------- /server/src/lib/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/server/src/lib/db.js -------------------------------------------------------------------------------- /server/src/lib/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/server/src/lib/line.js -------------------------------------------------------------------------------- /server/src/lib/vend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/server/src/lib/vend.js -------------------------------------------------------------------------------- /server/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happydenn/linereats/HEAD/server/src/server.js --------------------------------------------------------------------------------