Skip to content

The ArangoDB Plug.Session adapter for the Phoenix framework.

License

Notifications You must be signed in to change notification settings

kmakita13714/plug_session_arangodb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PlugSessionArangodb

The ArangoDB Plug.Session adapter for the Phoenix framework.

Usage

# mix.exs
defp deps do
  [{:plug_session_arangodb, "~> 0.9.0" }]
end

config.exs

config :arangox, :json_library, Poison

config :arangox, :session,
  endpoints: "http://localhost:8529",
  username: "username",
  password: "password",
  database: "database",
  collection: "sessions",
  pool_size: 3

endpoint.ex

plug Plug.Session,
  store: :arangodb,
  key: "_xxxxx_key"

About

The ArangoDB Plug.Session adapter for the Phoenix framework.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages