An open API service indexing awesome lists of open source software.

https://github.com/mhdir7an/restaurant

Restaurant Website that has the capability to let users make reservation.
https://github.com/mhdir7an/restaurant

bunjs cloudflare-workers csharp dotnet-core react scss supabase typescript vite

Last synced: over 1 year ago
JSON representation

Restaurant Website that has the capability to let users make reservation.

Awesome Lists containing this project

README

          

# 🏤 Restaurant

Table of Contents
🔶 About The Project

🔶 Landing Page

🔶 About Us Page

🔶 Reservation Page

🔶 Built With

🔶 Getting Started


## 🚀 About The Project
Restaurant Website that has the capability to let users make reservation.

Landing Page




About Us Page




Reservation Page




## 🧰 Built With
React Icon   
Vite Icon   
Scss Icon   
C# Icon   
Dotnet Icon   
TypeScript Icon   
Bun Icon   
Cloudflare Icon   
Supabase Icon   

## 🚪 Getting Started

To get a local copy up and running follow these simple steps:

1. Clone the repo
```sh
git clone https://github.com/MhdIr7an/restaurant.git
```

2. Navigate to client folder
```sh
cd client
```
3. Install dependencies
```sh
bun install
```
4. Run development server
```sh
bun run dev
```
5. Rename .env.example to .env and specify backend api url
6. Go back to root folder then navigate to backend folder
```sh
cd..
cd backend
```
7. Install requirements
```sh
dotnet restore
```
8. Run Build Command
```sh
dotnet build
```
9. Create file named appsettings.json and give database connection string
```
{
"ConnectionStrings": {
"DefaultConnection": ""
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}

```
10. Create file named appsettings.Development.json
```
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}

```
11. Apply Migrations
```
dotnet ef database update

```
12. Run
```
dotnet run

```

(Back to top)