https://github.com/kamaroly/ussdapp
https://github.com/kamaroly/ussdapp
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/kamaroly/ussdapp
- Owner: kamaroly
- Created: 2015-04-10T10:55:05.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2024-04-24T22:08:13.000Z (about 2 years ago)
- Last Synced: 2025-01-21T23:32:04.766Z (over 1 year ago)
- Language: PHP
- Size: 1.47 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# USSD APPS.
### Setup
- Clone repo
- Create your .env file from the example file: `cp .env.testng .env`
- Install composer dependencies: `composer install`
- Create databases by creating the following files:
- `storage/database.sqlite`
- `storage/testing.sqlite`
- Run the following commands:
- `php artisan migrate`
- `php artisan migrate --database=sqlite_testing`
- Server: run `php -S localhost:8000 -t public`
- Browse to localhost:8000/posts
### To test
Run Codeception, installed via Composer
```
./vendor/bin/codecept run
```