Rails Skeleton is the base Rails application template used for creating apps from scratch. It's based on Rails 5 and Ruby 2.4.0.
Information about external dependencies (redis, mongo, postgres, etc).
- PostgreSQL 9.5
- Ruby 2.4.0
- PhantomJS
- Rails 5
-
Clone application as new project with original repository named "rails-skeleton".
git clone git@github.com:IlkhamGaysin/rails-skeleton.git --origin skeleton [MY-NEW-PROJECT]
-
Create your new repo on GitHub and push master into it. Make sure master branch is tracking origin repo.
git remote add origin git@github.com:[MY-GITHUB-ACCOUNT]/[MY-NEW-PROJECT].git
git push -u origin master
- Run setup script
bin/setup
- Run test and quality suits to make sure all dependencies are satisfied and applications works correctly before making changes.
bin/ci
- Run app
bin/server
- Update README
Do not forget to update application README.md
file with detailed information based on the
existing template.
mv doc/README_TEMPLATE.md README.md
# update README.md
git commit -am "Update README.md"
bin/setup
- setup required gems, clone example files, run seeds and migrate db if neededbin/update
- setup required gems and migrate db if neededbin/quality
- run brakeman and other check for the appbin/ci
- should be used in the CI to run specs
Where is documentation and examples (e.g. ./docs
)?
Wating for integration...
Wating for integration...
Wating for integration...