mirror of https://github.com/Lapikud/tipilan
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
970 B
970 B
Setup
Prerequisites
- Git
- Bun
Installation
- 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 run dev - Build the application:
bun run build
Accessing the Application
- The application is now running at
http://localhost:3000.
Git branch
- The current production branch is
main. - Please make sure you make changes in your branch before creating a pull request.
Making git branch
- 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:
git pull-request