Skip to content

Latest commit

 

History

History
42 lines (26 loc) · 1.09 KB

README.md

File metadata and controls

42 lines (26 loc) · 1.09 KB

Tangerine

An experimental CMS built on SurrealDB and Remix

Screenshot

Install

Install and run SurrealDB

  • brew install surrealdb/tap/surreal
  • brew services start surreal
Create an initial user
  • npm run sql
  • > CREATE _identity SET username = 'admin', password = crypto::argon2::generate('admin'), admin = true

Setup project

  • npm install
  • cp .env.example .env

Develop

npm run dev

Known Issues

Remix

If you fire up the app for the first time and notice this in your browser console:

Warning: Did not expect server HTML to contain a <script> in <html>.

... and/or several hydration errors, make sure you don't have browser extensions injecting <script> tags and causing issues.

While you're at it, make sure to checkout all of Remix's Gotchas.