Getting Started - how does the UX begin?
Getting Started - how does the UX begin?
This is a place to discuss, refine and finalize the path into the product.
Notes
2022-02-14
npx create-next-app@latest --example https://github.com/datopian/portal.js/examples/data-literate my-app
cd my-app
# create your markdown
# edit a bit ...
vi content/README.md
# let's add a csv file ...
cp ~/mycsv.csv public
npm run dev
open localhost:3000
2021-12-24
See this script https://github.com/datopian/portal.js/blob/main/scripts/single-dataset-commit.sh
In summary:
- [Ensure node installed]
- [Check if we already have cloned earlier if so skip to last step or skip to copy step]
- Create a local version of the template portal app
- Copy the dataset into a subdirectory of the portal app public directory e.g.
.dataset
- Configure the template app with path to data
- Run
next dev
In detail …
https://github.com/datopian/portal.js/blob/main/scripts/single-dataset-commit.sh