This is the sourcecode behind flightlessmango.com/ website.
- Prepara data:
mkdir -p data/db data/storage
export UID=$UID
export GID=$GID
- Start app:
docker-compose up -d
- Setup database and create users:
docker-compose exec app rake db:setup
#then create user
docker-compose exec app rails c
> User.create(email: "[email protected]", username: "admin", admin: true, password: "1234")
> User.create(email: "[email protected]", username: "user", admin: false, password: "1234")
# you can also create some games:
> Game.create(name: "game1", source: "xxx", image_url: "https://github.com/flightlessmango/flightlessmango.com/raw/master/app/assets/images/mangoLogoSmall.png")
- Finally connect to http://127.0.0.1:3000.
git clone https://github.com/flightlessmango/flightlessmango.com && cd flightlessmango.com
# install rvm
curl -sSL https://get.rvm.io | bash
# you also need to install gcc make postgresql yarn python2
# install ruby
rvm install ruby-2.6.4
# - restart the shell to make rvm work as intended
# switch to projects ruby version
rvm use 2.6.4
# install the ruby gems
bundle
# some more dependencies
yarn
# add some required folders
mkdir -p shared/log shared/pids shared/sockets
# initialize postgresql and create a user
# cf https://wiki.archlinux.org/index.php/PostgreSQL#Initial_configuration
# load database migrations
rake db:setup
# run the server
rails s
Then create an admin user via rails console rails c
:
User.create(email: "[email protected]", username: "admin", admin: true, password: "1234")
Finally connect to http://127.0.0.1:3000.