# Single restaurant

From the version 1.4.0 the project supports single restaurant version.\
To enable this option you will need to make these steps:

Chande the environment variable **SINGLE\_MODE** from **false** to **true**.

```
SINGLE_MODE=true
```

Open your database using phpMyAdmin on your shared hosting or just simply open Adminer. (Adminer is php script to manage your database). The Adminer is located on **yourdomain.com/adminer**

There, login with your database username and password.&#x20;

Open **restorants** table and find the restaurant that you want to use in your project.

Find the column **id** and see which number ID is used for that restaurant.

![](https://2886676663-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-M15aAl8UGIPUvccCl0n%2F-MGu8cyGEnoGBWNlX2qz%2F-MGuA9fywucsPFE5vHpV%2FScreenshot.png?alt=media\&token=1931b7c1-5918-4ccd-8ec9-1764e1985300)

Now add the restaurant id in the following environment variable.

```
SINGLE_MODE_ID=1 //Restaurant id
```
