diff --git a/README.md b/README.md index 2bcedda18..6f8e69ce6 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,8 @@ [issues]: https://github.com/photoprism/photoprism/issues [ci]: https://travis-ci.org/photoprism/photoprism -PhotoPrism is a server-based application for privately managing large amounts of JPEG and RAW files. It is functionally similar to popular cloud services such as [Flickr](https://www.flickr.com/) or [Google Photos](https://photos.google.com/). +PhotoPrism is a server-based application for privately managing large amounts of JPEG and RAW files. It is functionally similar to +popular cloud services such as [Flickr](https://www.flickr.com/) or [Google Photos](https://photos.google.com/). Originals are stored in the file system in a structured way for easy backup and reliable long-term accessibility. *Note: This software is still alpha and under active development. You're welcome to join our team.* @@ -27,9 +28,10 @@ Our goal is to provide the following features (tested as a proof-of-concept): - Image search with powerful filters - Easy backup and export -User Interface --------------- -The Web frontend is based on [Vuetify](https://vuetifyjs.com/en/), a [Material Design](https://material.io/) component framework for Vue.js 2. +Web Frontend +------------ +Open a terminal an type `photoprism start` to start the built-in server. It will listen on localhost port 80 by default. +The UI is based on [Vuetify](https://vuetifyjs.com/en/), a [Material Design](https://material.io/) component framework for Vue.js 2. ![](docs/img/search.png "Advanced Search") diff --git a/docs/img/search.png b/docs/img/search.png index ce289f95d..8bbc097d5 100644 Binary files a/docs/img/search.png and b/docs/img/search.png differ diff --git a/frontend/src/app.js b/frontend/src/app.js index 2b931889e..4c6864572 100644 --- a/frontend/src/app.js +++ b/frontend/src/app.js @@ -25,6 +25,9 @@ Vue.use(Vuetify, { secondary: '#b0bec5', accent: '#8c9eff', error: '#b71c1c', + info: '#2196F3', + success: '#4CAF50', + warning: '#FFC107', }, }); diff --git a/frontend/src/app/pages/photos.vue b/frontend/src/app/pages/photos.vue index 22f2ca5f9..06a73eb0d 100644 --- a/frontend/src/app/pages/photos.vue +++ b/frontend/src/app/pages/photos.vue @@ -1,8 +1,8 @@