Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sreeram-venkitesh/deta-base-explorer
A web dashboard to play around with your Deta Base
https://github.com/sreeram-venkitesh/deta-base-explorer
Last synced: about 23 hours ago
JSON representation
A web dashboard to play around with your Deta Base
- Host: GitHub
- URL: https://github.com/sreeram-venkitesh/deta-base-explorer
- Owner: sreeram-venkitesh
- Created: 2020-06-28T15:11:03.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-13T04:27:34.000Z (almost 2 years ago)
- Last Synced: 2023-03-08T00:28:38.114Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://explorer.deta.dev
- Size: 276 KB
- Stars: 8
- Watchers: 1
- Forks: 2
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# deta-base-explorer
A web dashboard to play around with your Deta Base## Steps to run locally
* In order to use the Deta package in the client side, [browserify](http://browserify.org/) has been used
* All the code that needs to be run in the browser is written in [worker.js](https://github.com/fillerInk/deta-base-explorer/blob/master/worker.js) file and is
bundled into a [views/bundle.js](https://github.com/fillerInk/deta-base-explorer/blob/master/views/bundle.js) and that file is linked in [views/dashboard.ejs](https://github.com/fillerInk/deta-base-explorer/blob/master/views/dashboard.ejs)
* An you can create the bundle file automatically by running the npm script ```npm run build```
* After the bundle file has been created, you can ```npm start``` to start the server locally
* Make sure that the necessary lines are uncommented in [index.js](https://github.com/fillerInk/deta-base-explorer/blob/master/index.js)
(In order to host in deta, the code to setup localhost is replaced with module.exports)