This repository contains the starter and end result code for App Dev Club's backend workshop (and was adapted from our Technica workshop).
- Download or clone this repo to your computer.
cd
to the root of this repo (you should see thisREADME.md
when youls
ordir
in this folder).- Follow the relevant instructions below:
- macOS / Linux: run
./setup.sh
in bash, zsh, etc... - Windows only: run
Set-ExecutionPolicy Unrestricted
and then./setup
in PowerShell - Follow the directions listed. If you get a message that says "DONE," then you are all set.
- macOS / Linux: run
This is a two part app, it has a frontend and a backend. As such there are two parts to running this app, for which you will need two terminal windows.
- Switch into the
app
directory, runnpm start
. The Expo server should be running. - Switch into the
backend
directory, runnpm start
. This should start the API server, presuming there are no syntax errors.