Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
tasks:
- name: run back-end
openMode: split-left
command: |
npm install pg dotenv
npm install
npm start

- name: run front-end
openMode: split-right
command: |
cd client
npm install
echo "REACT_APP_API_URL=$(gp url 3001)" > .env
npm start