├── .eslintrc.js ├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── app ├── db.server.ts ├── entry.server.tsx ├── root.tsx └── routes │ └── _index.tsx ├── bun.lockb ├── package.json ├── public └── favicon.ico ├── remix.config.mjs ├── remix.env.d.ts ├── server.ts └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-on-bun/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | github: sergiodxa 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-on-bun/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-on-bun/HEAD/README.md -------------------------------------------------------------------------------- /app/db.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-on-bun/HEAD/app/db.server.ts -------------------------------------------------------------------------------- /app/entry.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-on-bun/HEAD/app/entry.server.tsx -------------------------------------------------------------------------------- /app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-on-bun/HEAD/app/root.tsx -------------------------------------------------------------------------------- /app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-on-bun/HEAD/app/routes/_index.tsx -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-on-bun/HEAD/bun.lockb -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-on-bun/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-on-bun/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /remix.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-on-bun/HEAD/remix.config.mjs -------------------------------------------------------------------------------- /remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-on-bun/HEAD/remix.env.d.ts -------------------------------------------------------------------------------- /server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-on-bun/HEAD/server.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/remix-on-bun/HEAD/tsconfig.json --------------------------------------------------------------------------------