Skip to content
This repository has been archived by the owner on Apr 12, 2023. It is now read-only.

ahtee/mozart-web

Repository files navigation

CodeBuild Docker Build Status GitHub contributors GitHub last commit GitHub repo size in bytes dependencies languages docker build commit activity MIT license

Mozart

Find more information about Mozart container orchestration tool. The informational site is built in ReactJS and uses tools like NodeJS and Babel for the http web server and for code linting.

Installing and contributing on your local environment

  • Clone the repo to your local machine using git: git clone https://github.com/ahtee/mozart-web.git
  • cd mozart-web

If you prefer yarn, install packages and dependencies with yarn:

yarn install

Otherwise just run npm install

Run the code locally and open a web browser:

npm start

You should be automatically directed to http://localhost:3000 in your preferred browser.

Any features contributed by you would require you to clone the repository, create your features or make your changes, test the code, and then submit a Pull Request to have your code reviewed for merging into the project. You can develop on the master branch, as this is a static site.

Building and running an image in Docker

Run the following commands to build and run the Dockerfile in a container:

docker build -q -t <image name> .

docker run -p 3000:3000 --rm --name=<container name> < image name>

Open your browser to http://localhost:3000

Continue!