Re: camping app on elastic beanstalk

2014-01-17 Thread Francois Sery
Bonjour, here is my app code and the trace. thanks for your help. #app.rb require 'camping' require 'sqlite3' Camping.goes :App module App::Models #models class Personne Base end #migrations class BasicFields V 1.0 def self.up create_table

Re: camping app on elastic beanstalk

2014-01-17 Thread arca0
does your elastic beanstalk instance have sqlite3 installed? can you run sqlite3 --version on it? On 17 January 2014 09:07, Francois Sery sery.franc...@gmail.com wrote: Bonjour, here is my app code and the trace. thanks for your help. #app.rb require 'camping' require 'sqlite3'

Re: camping app on elastic beanstalk

2014-01-17 Thread Francois Sery
yes ! the answer is 3.6.20 2014/1/17 arca0 arcaz...@gmail.com does your elastic beanstalk instance have sqlite3 installed? can you run sqlite3 --version on it? On 17 January 2014 09:07, Francois Sery sery.franc...@gmail.com wrote: Bonjour, here is my app code and the trace. thanks

Re: camping app on elastic beanstalk

2014-01-17 Thread arca0
ok, I'm an absolute newbie myself so I'm just guessing away here, but since nobody else is responding, here goes ;D I can't see a single line of code that would be responsible for creating the db file. Is the app.db file in your project directory on the instance? If not, can you try copying it

Re: camping app on elastic beanstalk

2014-01-17 Thread Magnus Holm
Do you actually call App.create? Camping will not do this for you automatically (unless you're using the Camping Server, aka bin/camping). // Magnus Holm On Fri, Jan 17, 2014 at 9:07 AM, Francois Sery sery.franc...@gmail.com wrote: Bonjour, here is my app code and the trace. thanks for your

Re: camping app on elastic beanstalk

2014-01-17 Thread Tim Uckun
If you run the migrations it should create the database for you. On Sat, Jan 18, 2014 at 3:46 AM, arca0 arcaz...@gmail.com wrote: ok, I'm an absolute newbie myself so I'm just guessing away here, but since nobody else is responding, here goes ;D I can't see a single line of code that would