-
Notifications
You must be signed in to change notification settings - Fork 3
Quick Start
nestorpersist edited this page Nov 11, 2013
·
27 revisions
Follow the following steps to quickly try out OStore.
-
Download OStore code from GitHub
https://github.com/nestorpersist/ostore
-
Make sure the
core/data
directory is empty (unless you are testing with a preexisting database). -
Use sbt 0.13.0 in the following steps. We use
https://github.com/paulp/sbt-extras
with the option
-sbt-version 0.13.0
-
In a shell start an OStore server.
cd core sbt run-main com.persist.Server
-
In another shell start ui.
cd ui sbt container:start
-
In web browser goto url
http://127.0.0.1:8080
-
In the browser, add a database
Add Database name: test file: core/config/test/test.db
-
In the browser, add values to a table.
select the test database Show Tables select tab1 Upload file: core/config/test/tab1.data Show Items
-
To quit. In the browser.
for database test Stop Database
Shut down the core sbt using ^C.
Stop the ui using the following sbt command
container:stop