Centro de ayuda


Install Chaskiq on Windows 10 for Development

https://app.chaskiq.io/rails/active_storage/representations/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBBdXdKIiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--02737f80d43f93d968ec878f82e262cb4a86f115/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaDdCem9MWm05eWJXRjBTU0lJY0c1bkJqb0dSVlE2RkhKbGMybDZaVjkwYjE5c2FXMXBkRnNIYVdscGFRPT0iLCJleHAiOm51bGwsInB1ciI6InZhcmlhdGlvbiJ9fQ==--937cf595528146fdc7d60cc4e14ea1697644eb40/mich-square-profile.png

Written by Miguel Michelson

updated

So you want to set up a development environment for Chaskiq on Windows 10? You can do it easily using Windows Subsystem for Linux 579 feature. It is faster too. This setup needs Windows 10 Anniversary Update. We’ll assume that you already installed Windows Subsystem for Linux (Ubuntu) on your Windows 10 system. Let’s begin!

Initially follow the steps from the topic Beginners Guide to Install Chaskiq on Ubuntu for Development until the step Clone Chaskiq. Before setting up the database you have to start PostgreSQL service & Redis server manually using the following commands

sudo service postgresql start

redis-server --daemonize yes

Then go through all the remaining steps of the Ubuntu guide.

Now your development environment is almost ready. The only problem is every time when you open Ubuntu on Windows you have to start PostgreSQL service & Redis server manually. Don’t worry we can have a work around for this by creating a custom command.

cd ~

Create a new file using the command nano start-chaskiq and paste the content below then save and exit.

#!/bin/bash

# to start PostgreSQL

sudo service postgresql start

# to start redis server

redis-server --daemonize yes

Now modify the CHMOD using below command

chmod +x start-chaskiq

And copy the file to your bin folder

sudo cp start-chaskiq /usr/bin/

It’s done. Now whenever you open the Ubuntu bash just run the command below and start developing

start-chaskiq

To launch web server use bundle exec puma instead of rails server.