-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
37 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,48 @@ | ||
This system is designed to streamline the management of book rentals. It allows users to efficiently handle book loans, offering key features such as adding, editing, deleting, and filtering loans based on their status ("In Progress," "Overdue," "Returned"). | ||
|
||
![feature](./resources/gla.png) | ||
|
||
Um sistema feito para gestão de aluguel de livros. Com ele, é possível a gestão eficiente de empréstimos de livros, incluindo funcionalidades para adicionar, editar, deletar e filtrar empréstimos conforme a classificação (“Em andamento”, “Atrasado”, “Devolvido”). | ||
--- | ||
|
||
#### User Installation | ||
|
||
#### Instalação para usuários | ||
To install, simply browse the available [releases](https://github.com/GustavoOly/Loaned-book-management-system/releases) and download the version compatible with your operating system. The system offers optimal performance and compatibility with both Windows and Linux. | ||
|
||
Navegue em [releases](https://github.com/GustavoOly/Loaned-book-management-system/releases) e baixe a versão correspondente ao seu sistema operacional. No momento o sistema garante uma melhor compatibilidade com Windows e Linux. | ||
--- | ||
|
||
#### Instalação para desenvolvedores | ||
#### Developer Installation | ||
|
||
Todos os recursos utilizados estão especificados em `package.json`. | ||
Para utilizar em sua máquina local, clone o projeto em seu diretório de preferência e execute o seguinte comando: | ||
All dependencies and tools required for development are listed in the package.json file. To run the project locally, follow these steps: | ||
|
||
```shell | ||
Clone the repository into your desired directory. | ||
Run the following commands to install dependencies and start the development environment: | ||
|
||
```bash | ||
npm install && npm run dev | ||
``` | ||
--- | ||
|
||
#### Contributing | ||
|
||
#### Contribuição | ||
We welcome contributions! To add new features or make improvements, follow these steps: | ||
|
||
1. Fork the repository. | ||
2. Create a new branch for your feature: | ||
|
||
```bash | ||
git checkout -b feature/new-feature | ||
``` | ||
|
||
3. Commit your changes: | ||
|
||
```bash | ||
git commit -am 'Add new feature' | ||
``` | ||
|
||
4. Push the branch to your repository: | ||
|
||
```bash | ||
git push origin feature/new-feature | ||
``` | ||
|
||
1. Fork o repositório. | ||
2. Crie uma branch para sua feature (`git checkout -b feature/nova-feature`). | ||
3. Commit suas mudanças (`git commit -am 'Adiciona nova feature'`). | ||
4. Push para a branch (`git push origin feature/nova-feature`). | ||
5. Abra um Pull Request. | ||
5. Open a Pull Request to the main repository. |