├── env.bat ├── favicon.ico ├── public ├── fonts │ └── HKGrotesk-Bold.otf ├── images │ ├── favicon-16x16.png │ └── favicon-32x32.png ├── styles │ ├── base.css │ └── index.css └── script.js ├── .gitignore ├── views ├── layouts │ └── main.handlebars ├── index.handlebars └── article-card-template.handlebars ├── package.json ├── README.md ├── src └── server.js ├── pnpm-lock.yaml └── shrinkwrap.yaml /env.bat: -------------------------------------------------------------------------------- 1 | SET PORT=3000 2 | 3 | : for bash do the following 4 | : 5 | : export PORT=3000 -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/twitter-substack-proxy/HEAD/favicon.ico -------------------------------------------------------------------------------- /public/fonts/HKGrotesk-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/twitter-substack-proxy/HEAD/public/fonts/HKGrotesk-Bold.otf -------------------------------------------------------------------------------- /public/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/twitter-substack-proxy/HEAD/public/images/favicon-16x16.png -------------------------------------------------------------------------------- /public/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/twitter-substack-proxy/HEAD/public/images/favicon-32x32.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .glitchdotcom.json 2 | .node-gyp 3 | node_modules 4 | .data 5 | .env 6 | public/articles/ 7 | # Local Netlify folder 8 | .netlify 9 | -------------------------------------------------------------------------------- /views/layouts/main.handlebars: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 |14 | Paste in your substack link: 15 |
16 | 17 | 18 | 19 |34 |35 | 36 | 37 | 38 | 39 | 40 | 41 | 63 | 64 |