24-25 Full-Stack Web & Mobile Project in collaboration with United Way of Greater Los Angeles
Our project builds on the mission to make it easier for residents to connect with small businesses, discover local events, track participation, and earn rewards through a mobile platform, and for community organizers to publish their events on a web application.
Change directories into the repository united-way.
Run the command:
cd admin-portal && npm i && cd ../mobile && npm i && cd ../server && npm iThis will directly install the requisite dependencies that are listed within package.json to be able to run the web, mobile and server applications, respectively.
# Installing dependencies
cd admin-portal
npm i
# Running the development build
npm run dev
# OR
# Running a production build
npx next build
npm start cd mobile
npm i
# Running the Expo Go
npx expo start --tunnel
# OR
# Running on the iOS Simulator
npx expo startTo be able to run any of the following web or mobile functionality, the server must be run with:
cd server
node index.js