These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
This project requires NodeJS (at least version 8) and NPM. Node and NPM are really easy to install. To make sure you have them available on your machine, try running the following command.
$ node --version
v10.1.0
$ npm --version
6.0.1
Start with cloning this repo on your local machine:
$ git clone git@github.com:ItalianCoders/myBudget-web-frontend.git
$ cd myBudget-web-frontend
Then install all the Node dependencies usin npm or Yarn
$ npm install
# Or using Yarn for a faster installation
$ yarn
$ npm start
$ npm test
$ npm run build
This project uses Terraform to create a mubudget.com
S3 bucket into your AWS account.
Make sure you have your AWS credentials available in your machine and Terraform installed.
$ terraform init terraform/environments
$ terraform plan terraform/environments
$ terraform apply terraform/environments
This will create a mubudget.com
S3 bucket and a mubudget-s3-upload
user with writing access to your new S3 bucket only.
$ make deploy
This will build a new distribution version of the project and sync the dist/
folder with the S3 bucket.
This task will create a distribution version of the project
inside your local dist/my-budget-it
folder
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Add your changes:
git add .
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request 😎
MIT License © ItalianCoders