Just a simple URL shortener app to transform long URLs into something like wwcode.jp/[something]
.
You can access the deployed version here: https://wwcode.jp/urls
Make sure you have ruby 2.5.3 installed on your system
Make sure you have PostgreSQL version 9.1 or newer
Clone and cd into the repo folder $ git clone git@github.com:WWCodeTokyo/wwcode-tokyo-web-app.git $ cd wwcode-tokyo-web-app
Install the dependencies $ bundle install
Configure your database
config/database.yml.sample
and rename the copy to config/database.yml
(without .sample
at the end)Run the server and access it on localhost:3000 on your browser $ bundle exec rails s
WIP
You can find the CI workflow on .circleci
folder. It's currently setup to deploy to the server when a PR is merged to master
branch.