-
Notifications
You must be signed in to change notification settings - Fork 3
Quick Start
nestorpersist edited this page Aug 17, 2012
·
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.11.3 (for core) and 0.11.2 (for ui) in the following steps. We use
https://github.com/paulp/sbt-extras
with the option form
-sbt-version 0.11.3
-
In a shell start an OStore server.
cd core sbt run
-
In another shell start ui.
cd ui sbt container:start
-
In web browser goto url
http://127.0.0.1:8080/?restartApplication
-
In the browser, add a database
name: test file: core/config/test.db
-
In the browser, add values to a table.
select the test database select tables select tab1 upload file: tab1.data
-
To quit. In the browser.
for database test stop
Shut down the core shells using ^C.
Shut down the ui shell using
container:stop