Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adelisardo/daybook
Diary Web App
https://github.com/adelisardo/daybook
angualrjs diary gulpjs lumen restfull-api saas single-page-app software-as-a-service webui
Last synced: 9 days ago
JSON representation
Diary Web App
- Host: GitHub
- URL: https://github.com/adelisardo/daybook
- Owner: adelisardo
- License: mit
- Created: 2019-08-15T13:05:46.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-04T07:50:43.000Z (about 2 years ago)
- Last Synced: 2024-10-28T01:09:20.304Z (2 months ago)
- Topics: angualrjs, diary, gulpjs, lumen, restfull-api, saas, single-page-app, software-as-a-service, webui
- Language: JavaScript
- Homepage: http://daybook.adeli.me
- Size: 2.38 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Daybook (Diary Web App)
Technologies, apps and library used:
Backend:
- [Lumen 5.8](https://lumen.laravel.com/docs/5.8)
- [myclabs/php-enum 1.7](https://github.com/myclabs/php-enum)
- [webpatser/laravel-uuid 3.0](https://github.com/webpatser/laravel-uuid)
- [MySQL 5](https://www.mysql.com)
- [Eloquent](https://laravel.com/docs/5.8/eloquent)
- [phpUnit](https://phpunit.de)
- [Valet](https://laravel.com/docs/5.8/valet)
- [Visual Studio Code 1.38](https://code.visualstudio.com)
- [Postman 7.3.6](https://www.getpostman.com)
- [TablePlus 2.3](http://tableplus.io)Frontend:
- [Gulp 3.9.1](https://gulpjs.com)
- [SASS](https://sass-lang.com)
- [Jquery 1.11.2](https://jquery.com)
- [Angularjs 1.5.5](https://angularjs.org)
- [Bootstrap 3.4.1](https://getbootstrap.com/docs/3.4/)
- [Moment.js 2.24.0](https://momentjs.com)
- [grevory/angular-local-storage 0.5.2](https://github.com/grevory/angular-local-storage)
- [angular-ui-bootstrap 1.3.2](https://angular-ui.github.io/bootstrap/)
- [offline-js 0.7.14](https://github.com/HubSpot/offline)
- [Visual Studio Code 1.38](https://code.visualstudio.com)## Quick Start
### Backend
```bash
cd daybook-api
composer install # install all dependencies
# configure your key, database, etc in `.env` file
php artisan migrate
php -S localhost:9000 -t public # you can also use Valet (https://laravel.com/docs/5.8/valet)
```### Frontend
```bash
cd daybook-webui
npm install # install all dependencies
gulp # for development
grulp deploy # for deployment
```