Please follow the steps below to run the project.
git clone git@github.com:jordanmaulana/linkwiz.git
cd linkwiz
npm install
⚠️⚠️⚠️
copy paste .env.example & rename into .env and fill the credentials from your own Neon DB
⚠️⚠️⚠️
npm run dev
- Prioritize functionality over UI design
- Use NextUI for UI components
- Use TailwindCSS for styling
- Create a new branch for each feature
- Create a pull request for each feature
- DO NOT merge your own pull request
You have to follow the following format for commit message.
git commit -m "type: subject"
Must be one of the following:
- feat: A new feature
- fix: A bug fix
- chore: Changes to the build process or auxiliary tools and libraries such as documentation generation
The subject contains succinct description of the change:
- use the imperative, present tense: “change” not “changed” nor “changes”
- don't capitalize first letter
- no dot (.) at the end
git commit -m "feat: add login page"
git commit -m "fix: login page not working"
git commit -m "chore: update readme"