diff options
author | Anthony Wang | 2022-01-12 14:48:58 -0600 |
---|---|---|
committer | Anthony Wang | 2022-01-12 14:48:58 -0600 |
commit | 26203d9f549d3eaeb9f2b47e0322bd79a71c8b30 (patch) | |
tree | 8211c4dd17bc93de0f4d18702114177a6c0bd48b /run | |
parent | ab5dd5c12a71e28297e9b0385f0162f75f72853a (diff) |
Simplify env file
Diffstat (limited to 'run')
-rwxr-xr-x | run | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,5 +1,5 @@ #!/bin/bash -source ./env +export $(cat env | xargs) # Read env variables from file ./build cd front npm run start -- -p 5000 | node ../back/dist/index.js |