Dev 1.4.0 #138

Merged
LukeGus merged 13 commits from dev-1.4.0 into main 2025-09-01 05:11:26 +00:00
Showing only changes of commit 250ad975d4 - Show all commits

View File

@@ -12,20 +12,22 @@
```sh
git clone https://github.com/LukeGus/Termix
```
2. Install the dependencies for the server:
2. Install the dependencies:
```sh
npm install
```
## Running the development server
Run the following command:
Run the following commands:
```sh
npm run dev
npx tsc -p tsconfig.node.json
node ./dist/backend/starter.js
```
This will start the Vite server. You can access Termix by going to `http://localhost:5174/`.
This will start the backend and the frontend Vite server. You can access Termix by going to `http://localhost:5174/`.
## Contributing
@@ -49,5 +51,6 @@ This will start the Vite server. You can access Termix by going to `http://local
## 📝 Guidelines
- Follow the existing code style. Use Tailwind CSS with shadcn components.
- Place all API routes in the `main-axios.ts` file. Updating the `openapi.json` is unneeded.
- Include meaningful commit messages.
- Link related issues when applicable.