An app to help people plan their weddings.
- Install Ionic using
npm install -g ionic@latest
. This app was built on version 3.20.0 - Run
npm install
to make sure all dependencies frompackage.json
are installed - Because the app uses the Foursquare API, you will have to create a developer account to get a client ID and client secret. Create a new file called
config.ts
in thesrc
folder, and add the following code:export const foursquareConfig = { clientId: "YOUR_CLIENT_ID", clientSecret: "YOUR_CLIENT_SECRET" };
- After setup, serve the app by running
ionic serve
in the top-level directory. The console should tell you which port the app is listening to, so just go tolocalhost:<port>
ionic cordova run <device_os>
, where <device_os> would beandroid
orios