Coder Social home page Coder Social logo

flightlessmango.com's Introduction

This is the sourcecode behind flightlessmango.com/ website.

Deploy

Using docker-compose

  1. Prepara data:
mkdir -p data/db data/storage
export UID=$UID
export GID=$GID
  1. Start app:
docker-compose up -d
  1. 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")
  1. Finally connect to http://127.0.0.1:3000.

On host

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.

flightlessmango.com's People

Contributors

bagage avatar dependabot[bot] avatar flightlessmango avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.