connect with your family and friends. Designed to be anti addiction, anti doom scrolling.
built with Vite + React.
-
Install dependencies
npm install
-
Configure your backend URL
Then edit `.env`:VITE_API_URL=http://localhost:3000
Or just edit the `BASE_URL` constant at the top of `src/api/index.js`. -
Run in development
npm run dev
-
Build for production
npm run build
| Route | Page |
|---|---|
/login |
Register / Login |
/profile |
View & edit your profile |
/posts |
Create, view, and delete your posts |
/network |
Followers, following, send follow requests |
/requests |
Accept / reject / cancel follow requests |
- Tokens are stored in
localStorage(accessToken,refreshToken). - Access tokens auto-refresh transparently via the
/refreshTokenendpoint.