Peepo App is an e-commerce web aplication with Augmented Reality for Android
(Now it is still in development)
This aplication is basically an e-commerce app with Augmented Reality. Every product has its 3d model to visualize it in AR. This feature needs an specific Android Version.
The app is responsive (that means it will work in any device) but it has some aditional features when it is used in an Android Phone.
We needed Google ArCore to build 3d models.
This project is created with:
Clone the project
git clone https://github.com/w4xccino/peepo-app
Go to the project directory
cd peepo-app
Install dependencies
cd client/
npm install
cd ../server
npm install
Set environment variables.
Copy the .env.example file and replace with your SERVER_URL address
cp .env.example .env
REACT_APP_SERVER_URL=<your backend url>
Start the server (server)
cd server/
npm start
Start the server (client)
cd client/
npm start