This file contains hidden or 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
-------------------------------------- SERVER SETUP STEPS ------------------------------------------------------- | |
******************************* DEPENDENCIES INSTALLATION ******************************* | |
1. Check ubuntu version using command, lsb_release -a | |
2. Install apache according to ubuntu version | |
3. apt-get update | |
4. apt-get install apache2 | |
5. INSTALL NVM FROM HERE---------------- https://gist.github.com/d2s/372b5943bce17b964a79 | |
6. Install Node - nvm install v8.9.0 or higher | |
7. Install MongoDB - https://docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu/ |
This file contains hidden or 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
import { createAction } from 'redux-actions'; | |
export const DOWNLOAD_FILE = 'DOWNLOAD_FILE'; | |
export const downloadFile = createAction(DOWNLOAD_FILE); | |
export const DOWNLOAD_FILE_FAILURE = 'DOWNLOAD_FILE_FAILURE'; | |
export const downloadFileFailure = createAction(DOWNLOAD_FILE_FAILURE); | |
export const DOWNLOAD_FILE_REQUESTED = 'DOWNLOAD_FILE_REQUESTED'; | |
export const downloadFileRequested = createAction(DOWNLOAD_FILE_REQUESTED); |
OlderNewer