├── .dockerignore ├── .gitignore ├── .npmrc ├── Dockerfile ├── README.md ├── app ├── entry.client.jsx ├── entry.server.jsx ├── jokes.js ├── root.jsx ├── routes │ ├── about.jsx │ ├── index.jsx │ ├── jokes.jsx │ └── jokes │ │ ├── $jokeId.jsx │ │ ├── index.jsx │ │ └── new.jsx └── styles │ └── about.css ├── fly.toml ├── package.json ├── public └── favicon.ico ├── remix.config.js └── topics.md /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/remix-jokes-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/remix-jokes-app/HEAD/.npmrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/remix-jokes-app/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/remix-jokes-app/HEAD/README.md -------------------------------------------------------------------------------- /app/entry.client.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/remix-jokes-app/HEAD/app/entry.client.jsx -------------------------------------------------------------------------------- /app/entry.server.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/remix-jokes-app/HEAD/app/entry.server.jsx -------------------------------------------------------------------------------- /app/jokes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/remix-jokes-app/HEAD/app/jokes.js -------------------------------------------------------------------------------- /app/root.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/remix-jokes-app/HEAD/app/root.jsx -------------------------------------------------------------------------------- /app/routes/about.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/remix-jokes-app/HEAD/app/routes/about.jsx -------------------------------------------------------------------------------- /app/routes/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/remix-jokes-app/HEAD/app/routes/index.jsx -------------------------------------------------------------------------------- /app/routes/jokes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/remix-jokes-app/HEAD/app/routes/jokes.jsx -------------------------------------------------------------------------------- /app/routes/jokes/$jokeId.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/remix-jokes-app/HEAD/app/routes/jokes/$jokeId.jsx -------------------------------------------------------------------------------- /app/routes/jokes/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/remix-jokes-app/HEAD/app/routes/jokes/index.jsx -------------------------------------------------------------------------------- /app/routes/jokes/new.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/remix-jokes-app/HEAD/app/routes/jokes/new.jsx -------------------------------------------------------------------------------- /app/styles/about.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: cornflowerblue; 3 | } 4 | -------------------------------------------------------------------------------- /fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/remix-jokes-app/HEAD/fly.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/remix-jokes-app/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/remix-jokes-app/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /remix.config.js: -------------------------------------------------------------------------------- 1 | module.exports = {} 2 | -------------------------------------------------------------------------------- /topics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/remix-jokes-app/HEAD/topics.md --------------------------------------------------------------------------------