https://github.com/errlogic/ci4lyrid
https://github.com/errlogic/ci4lyrid
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/errlogic/ci4lyrid
- Owner: ErrLogic
- License: mit
- Created: 2024-06-28T01:06:24.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-06-28T01:43:07.000Z (11 months ago)
- Last Synced: 2024-06-28T02:45:25.453Z (11 months ago)
- Language: PHP
- Size: 85 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Deployment
To deploy this project run
Copy `env` to `.env`. Set the value according to your setup
```bash
CI_ENVIRONMENT = developmentapp.baseURL = 'http://localhost:8080/'
database.default.hostname = localhost
database.default.database = yourdatabase
database.default.username = yourusername
database.default.password = yourpassword
database.default.DBDriver = MySQLi
database.default.DBPrefix =
database.default.port = 3306
```Run the migration
```bash
php spark migrate
```Run the Database Seeder
```bash
php spark db:seed
```Serve the app
```bash
php spark serve
```You can login with default account
```bash
username: admin1
password: password123
```