- Git
- Bun
- If on Windows, it's recommended to use WSL (Windows Subsystem for Linux) and do the following steps there.
- Clone the repository:
git clone https://github.com/Lapikud/tipilan.git
- Install bun:
curl -fsSL https://bun.sh/install | bash - Install dependencies:
cd tipilan bun install - Run the application:
bun --bun run dev
(ONLY FOR PRODUCTION!!) Build the application:
bun --bun run build- The application is now running at
http://localhost:3000.
- The current production branch is
main. - Please make sure you make changes in your branch before creating a pull request.
- Create a new branch:
git checkout -b <branch-name>
- Commit your changes:
git add . git commit -m "<commit-message>"
- Push your branch:
git push origin <branch-name>
- Create a pull request:
Go to Github,
open up this project's repository and make a new pull request.