Skip to content

Commit e456670

Browse files
authored
Update README.md
1 parent 9bc8aaf commit e456670

File tree

1 file changed

+16
-10
lines changed

1 file changed

+16
-10
lines changed

README.md

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,28 @@ Simple PHP framework that helps you quickly understand and write simple APIs.
55

66
Use the package manager [composer](https://getcomposer.org/) to install required files
77

8+
Install dependencies
89
```bash
910
composer install
1011
```
11-
1. Clone/download this folder to your computer.
12-
2. create .env file
13-
3. copy content from env-example to .env file
14-
4. config .env file
15-
5. Voila! Enjoy development.
1612

17-
## Usage
13+
## Run Your Application With PHP’s Webserver
14+
Environment Variables
15+
```bash
16+
composer run env
17+
```
1818

19-
> `cd public/`
20-
> `php -S localhost:8080`
19+
Go to the public directory
20+
```bash
21+
cd public
22+
```
2123

22-
## Model
23-
create name of model as same as name of table in database
24+
Start the server
25+
26+
```bash
27+
php -S localhost:8080
28+
```
29+
Voila! Enjoy development.
2430

2531
## Contributing
2632
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

0 commit comments

Comments
 (0)