The goal of this project is to be a single stop for information consumption. It's meant to replace Pocket and Feedbin/Feedly.
Very much a Work In Progress.
Like most side project, it's also a playground for experimentation with new technologies.
Add .env files with relevant information filled out in packages/nomnom-api and packages/nomnom-app You will need to create google credentials for the login and an api key for the youtube api (see Google admin console)
You then need to start the database and redis
# Example in dev
docker run --restart always -p 5432:5432 --name nomnom-db -d postgres
docker run --restart always -p 6379:6379 --name nomnom-redis -d redis
Then install and launch the app
# In ~
yarn install
# In packages/nomnom-server-api
yarn migrate up
yarn start
# In packages/nomnom-app
yarn run dev
- Next.JS for the app client. SSR in a content heavy app === 🏆
- Styled components for styling
- GraphQL for the API using Apollo both on the server and on the client