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
## On the Linode Machine | |
```` | |
ssh root@$LINODE_MACHINE_FQDN | |
# Create User | |
# USER=<username> | |
useradd -m -d /home/$USER -s /bin/bash $USER |
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
### Makefile to be used when compiling assets for Event Manager | |
### Based on ideas from https://github.com/acdlite/the-react-way/blob/master/Makefile | |
### | |
### Requirements/assumptions of this Makefile: | |
### JS | |
### - webpack (include json and css loaders to webpack cofig just in case) | |
### - babel | |
### - eslint (eslint-plugin-react if you want more lints of your react code) | |
### - eslint-watch (broken until 2.0.0: https://github.com/rizowski/eslint-watch/issues/8) | |
### CSS |