Photoblog (PWA), built with Ionic 2.
I wanted to have a very(!) simple photoblog - built with Ionic 2 - providing the following two features:
- As an owner you can upload images via mobile app.
- As a visitor you just scroll down to view images.
- Client: just display images in browser
- Mobile: like Client, but contains CRUD operations. Deploy to iOS, Android, ...
- Server: handle images with multer and mongoose data to mongodb
- Google Maps API to autocomplete geodata input
- infinite-scroll to load images while scrolling
You'll need Git and Yarn (or npm) to get and install:
$ git clone https://github.com/hueper/hftb.git
# Mobile:
$ cd hftb/mobile
$ yarn install
$ ionic serve
# or
$ ionic serve --prod
# Client:
$ cd hftb/client
$ yarn install
$ ionic serve
# or
$ ionic serve --prod
# Server:
# make sure you have mongodb
$ cd hftb/server
$ yarn install
$ node server.js
Are very welcome
MIT