Skip to content

muhammad-levi/ansible-react

 
 

Repository files navigation

ansible-react

Build Status

Install and configure react apps.

This is a simple and straight-to-the-point role to install react apps. it is tested against apps that were created using create react app.

We only install and configure:

  • node
  • yarn
  • and of course all the javascript packages that your project uses

We intentionally consider the installation and configuration of web servers, and other things as out of scope for this role. Therefore, naturally this role is to be used in a playbook that installs and configures those other things, if you need them.

Role Variables

Some of the more important variables are briefly described below. You can see all variables by looking at the defaults/main.yml file.

react_system_user: "react"  # name of the user that will own the django installation
react_node_version: 10.x  # the version of node to install

react_git_url: "https://github.com/onaio/kaznet-frontend.git"  # the git repo of your django app which we are installing
react_git_key:

react_remote_js_build: # whether to compile the app on the target host or on the controlling host. 
# When compiling the app on the controlling host, you will need to make sure that node and yarn is installed.

Custom environment variables

Create react app supports custom environment variables and this role does too!

You can set custom environment variables by using the react_app_settings variable, like so:

react_app_settings:
    REACT_APP_WEBSITE_NAME: 'Example App'
    SOMETHING_ELSE: "you can put anything here"

Testing

This project comes with a Vagrantfile, this is a fast and easy way to test changes to the role, fire it up with vagrant up.

See vagrant docs for getting setup with vagrant

License

Apache 2

Authors

Ona Engineering

About

Install and configure React apps

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 82.2%
  • Jinja 17.8%