├── .gitignore ├── .vscode └── settings.json ├── README.md ├── db ├── firebase-config.ts └── index.ts ├── deno.json ├── helpers ├── item.ts ├── user.ts └── utils.ts ├── main.ts ├── routes ├── index.ts ├── item.ts ├── schema.ts └── user.ts └── types ├── index.ts └── types.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibodev1/hackernews/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibodev1/hackernews/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibodev1/hackernews/HEAD/README.md -------------------------------------------------------------------------------- /db/firebase-config.ts: -------------------------------------------------------------------------------- 1 | export default { 2 | databaseURL: 'https://hacker-news.firebaseio.com/', 3 | }; 4 | -------------------------------------------------------------------------------- /db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibodev1/hackernews/HEAD/db/index.ts -------------------------------------------------------------------------------- /deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibodev1/hackernews/HEAD/deno.json -------------------------------------------------------------------------------- /helpers/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibodev1/hackernews/HEAD/helpers/item.ts -------------------------------------------------------------------------------- /helpers/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibodev1/hackernews/HEAD/helpers/user.ts -------------------------------------------------------------------------------- /helpers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibodev1/hackernews/HEAD/helpers/utils.ts -------------------------------------------------------------------------------- /main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibodev1/hackernews/HEAD/main.ts -------------------------------------------------------------------------------- /routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibodev1/hackernews/HEAD/routes/index.ts -------------------------------------------------------------------------------- /routes/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibodev1/hackernews/HEAD/routes/item.ts -------------------------------------------------------------------------------- /routes/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibodev1/hackernews/HEAD/routes/schema.ts -------------------------------------------------------------------------------- /routes/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibodev1/hackernews/HEAD/routes/user.ts -------------------------------------------------------------------------------- /types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibodev1/hackernews/HEAD/types/index.ts -------------------------------------------------------------------------------- /types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibodev1/hackernews/HEAD/types/types.ts --------------------------------------------------------------------------------