A movie ticket selling app built using react native for learning purpose.
- React native
- native base (UI)
- axios (network request)
- express
- mongodb
- Login / Register Account
- View Movies
- Buy Movie Tickets (select movie, date & time, seats)
- profile
Install mongoDB, then import the database into mongoDB
install mongoDB tools (https://fastdl.mongodb.org/tools/db/mongodb-database-tools-windows-x86_64-100.5.0.zip) to import database
- cd to mongodb bin
- run command
./mongorestore -d WAD_app <directory_backup>
to export
- run command
./mongodump -d WAD_app -o <directory_backup>
To run server,
- cd to server
npm install
npm run start
To run app,
- cd to app
npm install
npx react-native run-android