All Projects → gillkyle → Sol Journal

gillkyle / Sol Journal

✎ Simple, personal journaling progressive web app

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Sol Journal

React Most Wanted
React starter kit with "Most Wanted" application features
Stars: ✭ 1,867 (+297.23%)
Mutual labels:  firebase, offline, pwa, progressive-web-app
Angularfire2 Offline
🔌 A simple wrapper for AngularFire2 to read and write to Firebase while offline, even after a complete refresh.
Stars: ✭ 209 (-55.53%)
Mutual labels:  firebase, offline, pwa
Bento Starter
🍱 Full-Stack solution to quickly build PWA applications with Vue.js and Firebase
Stars: ✭ 1,519 (+223.19%)
Mutual labels:  firebase, offline, pwa
Super Progressive Web Apps
SuperPWA helps to convert your WordPress website into Progressive Web Apps instantly. PWA (Progressive Web Apps) demo at : https://superpwa.com and Plugin :
Stars: ✭ 304 (-35.32%)
Mutual labels:  offline, pwa, progressive-web-app
Pwa Workshop Angular Firebase
Build a production ready PWA with Angular and Firebase! This workshop consists of multiple steps for producing a PWA by transforming a regular web app - Ionic Conference App into a PWA, finally deploying it to Firebase.
Stars: ✭ 45 (-90.43%)
Mutual labels:  firebase, pwa, progressive-web-app
The forge
Our groundbreaking, lightning fast PWA CLI tool
Stars: ✭ 70 (-85.11%)
Mutual labels:  firebase, pwa, progressive-web-app
Ios Pwa Wrapper
An iOS Wrapper application to create a native iOS App from an offline-capable Progressive Web App.
Stars: ✭ 268 (-42.98%)
Mutual labels:  offline, pwa, progressive-web-app
Demo Progressive Web App
🎉 A demo for progressive web application with features like offline, push notifications, background sync etc,
Stars: ✭ 798 (+69.79%)
Mutual labels:  offline, pwa, progressive-web-app
Graphql Genie
Simply pass in your GraphQL type defintions and get a fully featured GraphQL API with referential integrity, inverse updates, subscriptions and role based access control that can be used client side or server side.
Stars: ✭ 147 (-68.72%)
Mutual labels:  database, pwa, progressive-web-app
Preact Starter
Webpack3 boilerplate for building SPA / PWA / offline front-end apps with Preact
Stars: ✭ 384 (-18.3%)
Mutual labels:  offline, pwa, progressive-web-app
moodtracker
A serverless and offline-first PWA that lets you track your mood
Stars: ✭ 34 (-92.77%)
Mutual labels:  journal, offline, progressive-web-app
Angular Shoppingcart
ShoppingCart (Ecommerce) 🛒 Application using Angular10, Firebase, PWA, Drag&Drop, Materialized Bootstrap and i18n 🚀🔥👨‍💻
Stars: ✭ 483 (+2.77%)
Mutual labels:  firebase, pwa, progressive-web-app
Jfa Pwa Toolkit
⚡️ PWA Features to Any Website (very Fast & Easy)
Stars: ✭ 245 (-47.87%)
Mutual labels:  offline, pwa, progressive-web-app
ambianic-ui
PWA for managing Ambianic Edge devices (smart cameras).
Stars: ✭ 32 (-93.19%)
Mutual labels:  pwa, offline, progressive-web-app
Ember Service Worker
A pluggable approach to Service Workers for Ember.js
Stars: ✭ 227 (-51.7%)
Mutual labels:  offline, pwa, progressive-web-app
React Firebase Admin
React ⚛️ starter kit with Firebase 🔥 and Bulma for setting up an admin dashboard - Highly scalable, PWA, Serverless
Stars: ✭ 232 (-50.64%)
Mutual labels:  firebase, offline, pwa
Upup
✈️ Easily create sites that work offline as well as online
Stars: ✭ 4,777 (+916.38%)
Mutual labels:  offline, pwa, progressive-web-app
Vue Wordpress Pwa
An offline-first SPA using Vue.js, the WordPress REST API and Progressive Web Apps
Stars: ✭ 665 (+41.49%)
Mutual labels:  offline, pwa, progressive-web-app
Vue Firebase Auth Vuex
Vue Firebase🔥 Authentication with Vuex
Stars: ✭ 248 (-47.23%)
Mutual labels:  firebase, pwa, progressive-web-app
wordpress
Free PWA & SPA for Wordpress & Woocommerce
Stars: ✭ 103 (-78.09%)
Mutual labels:  pwa, offline, progressive-web-app

logomark

Personal Journaling Platform

Sol Journal is a simple, minimal, journaling platform that works offline and across all devices. It can be hosted yourself on Firebase and then installed as a PWA, on mobile devices for easy access on a phone, or on Desktops.

preview of page

Introduction

Sol Journal - A simple, open-source personal journaling platform | Product Hunt Embed

Journaling is a keystone habit that can improve your happiness and overall health. Writing in a journal with pen and paper is effective, but not as easily accessible, maintained, or preserved as taking advantage of digital platforms.

Having a journal that is available on any device makes journaling easier. Being tailored specifically to journaling makes it less cumbersome than trying to utilize a note taking app or document for recording thoughts and impressions.

Getting Started

There are 2 ways to get started using Sol Journal:

  1. You can develop it locally after hooking it up to your own Firebase project by following the instructions below
  2. You can host your own version and manage it yourself by following the setup docs

Sol Journal uses firebase to support offline functionality and authentication, meaning a new Firebase app will need to be setup with Firestore as a database if you wish to host it yourself. Be sure to add documents for users and entries, as well as enabling email for user authentication.

Features

In the spirit of minimalism, key features are what are in place for a quick, lightweight journaling experience that can work across devices, including:

  • 🔥 Authentication: Cloud firestore persists registered users to a users document and saved journal entries to an entries document
  • 🎨 Theming: the src/styles/theme.js file contains a set of colors and default styles that are applied to components with Emotion. A default light and dark theme are already in the file (adding theme-ui support would be a great future addition)
  • 🔍 Search: full-text search of a user's entries stored in Firestore for quick access to past entries
  • 🖥 Mobile Friendly: designed to look great on mobile as well as desktop, with easy navigation on both
  • 💡 PWA: being a progressive web app makes it installable from Chrome/Safari on desktop, or be added to the homescreen on iOS/Android
  • 🔌 Offline Support: read/write when you're offline and let the updates happen when your connection is restored
  • 🗄 Export: backup all of your entries at any time to save your data

Project setup

Files are organized into these folders:

/components: user interface pieces to construct the design and layout of the site
/data: local data transformed by Gatsby to become queryable by Gatsby's GraphQL data layer
/img: images used by places like landing pages that are optimized by gatsby-image and then queryable in the GraphQL layer
/pages: public pages that can be seen by unauthenticated users and are completely server side rendered by Gatsby during gatsby build
/routes: private, client only routes only visible to authenticated users that are used by the app section of the journal
/styles: role based design tokens and theme definitions
/util: simple utility functions, for things like formatting dates

Developing

Clone the project:

git clone https://github.com/gillkyle/sol-journal

Install dependencies:

npm install

or

yarn

Then configure a file in a new .env file (using the .env.sample file as a reference) with the following keys from the firebase console:

GATSBY_FIREBASE_API_KEY=<BUNCHofRandomNumbersAndChars>
GATSBY_DEV_AUTH_DOMAIN=<name>.firebaseapp.com
GATSBY_DEV_DATABASE_URL=https://<name>.firebaseio.com
GATSBY_DEV_PROJECT_ID=<name>
GATSBY_DEV_STORAGE_BUCKET=<name>.appspot.com
GATSBY_DEV_MESSAGING_SENDER_ID=############

GATSBY_CONFIRMATION_EMAIL_REDIRECT=https://<name>.firebaseapp.com

Again, be sure to add documents for users and entries, as well as enabling email for user authentication.

Navigate into the project directory, and then launch the site with this command:

gatsby develop

The site will be opened up in your default browser on http://localhost:8000

Edit code in the /src, save your changes, and they'll reload instantly in the browser.

Deploy

To create an optimized build of the site run this command:

gatsby build

A /public folder will be assembled that can be deployed to any static file hosting service like Netlify or surge.

It can be deployed to firebase with this command:

firebase deploy -p public

Inspiration and Other Projects

Sol Journal is inspired by JournalBook and borrows much of its design and navigation.

If you're interested in a comparable version of the project, you can check out this fork that adds rich text support to the journaling block.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].