qik is a simple & modern fast chat app where making a group takes less than a minute - just copy a link and send to your friends to create a group chat! The chat is currently designed for fast communication, which means it shows only number of messages (currently last 10). Messages that are not shown on the group chat page are deleted.
The app is built with Next.js & mongoDB
Currently the app supports only connection, chat, and user/post page for each one of them. It DOES'NT have a group creating feature with links, but the group that would be created via the link is fully working. If you want to keep working on this, your more than welcome ;) For questions email me :)
- Install node
- Set up database and get a MongoDB connection string
- Clone this git repository
git clone https://github.com/ya5huk/qik-app.git
cd qik-app
npm install
- Insert into enviorment variable
DB_URI
your connection string:
// Example: In file .env.local in root directory (which default would be qik-app)
DB_URI = <connection_string> // accessible via process.env.DB_URI
- You are ready to go! Run
npm run dev