This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export enum ActivityLogsType { | |
// This was use as index in logs database | |
INDEX = 'activity-logs', | |
HISTORICAL = 'historical-activity-logs', | |
// This was use as name of instance from interceptor | |
REQUEST = 'request', | |
INFO = 'activity:information', | |
ERROR = 'activity:error', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* | |
* filename: server.js | |
* | |
* | |
* Ini yang akan di eksekusi oleh server | |
* Running step: | |
* 1. ng build --build-optimizer | |
* 2. Check folder dist (setting path dist ada di angular.json) | |
* 3. running server node server.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM alpine:3.13 | |
# for laravel lumen run smoothly | |
RUN apk --no-cache add \ | |
php7 \ | |
php7-dev \ | |
php7-pear \ | |
php7-fpm \ | |
php7-pdo \ |
NewerOlder