Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mortie23/shinelite
https://github.com/mortie23/shinelite
Last synced: 17 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mortie23/shinelite
- Owner: mortie23
- Created: 2024-04-23T06:44:00.000Z (8 months ago)
- Default Branch: develop
- Last Pushed: 2024-05-01T00:00:02.000Z (8 months ago)
- Last Synced: 2024-05-01T07:24:46.696Z (8 months ago)
- Language: R
- Size: 859 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - mortie23/shinelite - (R)
README
A basic lite CRUD application framework for RShiny application development with a SQlite back end.
## Setup
### OS binaries
I started developing this on a vanilla Ubuntu VM and tried to capture all the things needed to get it up and running.
```sh
# Run this from your terminal (not console)
# Install all these OS binaries or you will get caught during the renv restore
sudo apt install build-essential
sudo apt install libcurl4-openssl-dev
sudo apt install libfontconfig1-dev
sudo apt install libharfbuzz-dev libfribidi-dev
sudo apt install libfreetype6-dev libpng-dev libtiff5-dev libjpeg-dev
sudo apt install libxml2-dev
```### The SQLite DB
Initialise the sqlite db in development environment.
```sh
# Run this from your terminal (not console)
export env=dev
db_path="/u01/data/shinelite/dev/todo_app.db"
sqlite3 $db_path <