This is the official repository for Lenspost Admin
Clone the Repo and Install all the dependencies
Backend
1. cd backend 2. yarn && yarn devFrontend
1. cd frontend 2. yarn && yarn devUse the .env.example template for env
Here's a quick guide while using imports :
- Do not use relative imports
-
Ex :
../../../componentinstead, use
src/folderName/subFolderName/component -
Always start imports with
src(since it is already configured for this project intsconfig.jsonandvite.config.ts)
-