-
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.
- Loading branch information
1 parent
e7dd4f9
commit e1d5316
Showing
1 changed file
with
48 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
|
||
<h1> API de Sistema de hotel</h1> | ||
|
||
 | ||
 | ||
 | ||
|
||
<p align="center"> | ||
<a href="#started">Getting Started</a> • | ||
</p> | ||
|
||
<p align="center"> | ||
<b>A API de sistema de hotel facilita a integração e permite realizar operações típicas de hospedagem. Ela permite realizar operações como gestão de reservas, cômodos, funcionários, clientes, relatórios e mais.</b> | ||
</p> | ||
|
||
<h2 id="started">🚀 Getting started</h2> | ||
<h3>Prerequisites</h3> | ||
<p>Os seguintes pré-requisitos são necessários para executar o projeto</p> | ||
|
||
- [.NET 8](https://dotnet.microsoft.com/pt-br/) | ||
- [Git 2](https://github.com) | ||
|
||
<h3 id="cloning">Cloning</h3> | ||
<p>Para clonar o projeto, basta executar o seguinte comando no terminal</p> | ||
|
||
```bash | ||
git clone https://github.com/EduardoKroetz/HotelSistem.git | ||
``` | ||
|
||
<h3 id="environments"> Environment Variables</h2> | ||
<p>Adicione essas variáveis de ambiente em um arquivo appsettings.json</p> | ||
|
||
```yaml | ||
EmailToSendEmail={seu_email_para_enviar_emails} | ||
PasswordToSendEmail={sua_senha_para_enviar_emails} | ||
JwtKey=addakaDfAyrtcvnncvAEreaxxvrtkkadAeretGAc | ||
ConnectionStrings:DefaultConnection={sua_conexão_com_o_sql_server} | ||
Stripe:SecretKey={sua_chave_secreta_do_stripe} | ||
Stripe:PublishableKey={sua_chave_pública_do_stripe} | ||
``` | ||
|
||
<h3 id="start">Starting</h3> | ||
<p>Para iniciar o projeto, execute</p> | ||
|
||
```bash | ||
cd HotelSistem/Hotel.Domain | ||
dotnet run | ||
``` |