This application provides a simple way to CRUD users for CASinoAPP
The CASinoAPP is only for Authentication. At the first time, we need to configure some backend to create and manage users, for tests or a new users database.... and this code is for manage their users.
Its for: stub users for testing CASinoAPP
- Clone the source
- go to project path (
cd ~path~/casino-users_manager/
) - configure the secrets (
config/secrets.yml
) - configure the database (
config/database.yml
) - run de blundler (
bundle install
) - run de bower (
bower install
) - to run the app (
rails s -p <PORT>
) - Then open
http://localhost:<PORT>
- Run migration(
rake db:migrate
) - After run the migrations of CASinoAPP - Run tests(
rspec spec
)
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request