modify procfile and packages to build on heroku

This commit is contained in:
Amruth Pillai
2020-03-30 22:27:40 +05:30
parent c9dbc23899
commit 43a6be112c
3 changed files with 13 additions and 12 deletions

1
Procfile Normal file
View File

@ -0,0 +1 @@
web: bin/boot

View File

@ -10,7 +10,7 @@ You've built the source code successfully and now you're on your way to deployin
Heroku is a cloud platform that lets companies build, deliver, monitor and scale apps — we're the fastest way to go from idea to URL, bypassing all those infrastructure headaches. Heroku is a cloud platform that lets companies build, deliver, monitor and scale apps — we're the fastest way to go from idea to URL, bypassing all those infrastructure headaches.
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy) [![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/AmruthPillai/Reactive-Resume)
## Deploying to Netlify ## Deploying to Netlify

View File

@ -1,22 +1,28 @@
{ {
"name": "reactive-resume", "name": "reactive-resume",
"version": "0.1.0", "version": "1.0.0",
"private": true, "private": true,
"dependencies": { "dependencies": {
"@fullhuman/postcss-purgecss": "^2.1.0",
"@material-ui/core": "^4.9.7", "@material-ui/core": "^4.9.7",
"@testing-library/jest-dom": "^5.3.0", "@testing-library/jest-dom": "^5.3.0",
"@testing-library/react": "^10.0.1", "@testing-library/react": "^10.0.1",
"@testing-library/user-event": "^10.0.0", "@testing-library/user-event": "^10.0.0",
"@vuepress/plugin-google-analytics": "^1.4.0",
"autoprefixer": "^9.7.5",
"axios": "^0.19.2", "axios": "^0.19.2",
"i18next": "^19.3.4", "i18next": "^19.3.4",
"lodash": "^4.17.15", "lodash": "^4.17.15",
"react": "^16.13.1", "postcss-cli": "^7.1.0",
"react-dom": "^16.13.1", "react-dom": "^16.13.1",
"react-i18next": "^11.3.4", "react-i18next": "^11.3.4",
"react-markdown": "^4.3.1", "react-markdown": "^4.3.1",
"react-scripts": "3.4.1", "react-scripts": "3.4.1",
"react-toastify": "^5.5.0", "react-toastify": "^5.5.0",
"uuid": "^7.0.2" "react": "^16.13.1",
"tailwindcss": "^1.2.0",
"uuid": "^7.0.2",
"vuepress": "^1.4.0"
}, },
"scripts": { "scripts": {
"css": "postcss src/assets/tailwind/tailwind.src.css -o src/assets/tailwind/tailwind.css", "css": "postcss src/assets/tailwind/tailwind.src.css -o src/assets/tailwind/tailwind.css",
@ -52,19 +58,13 @@
] ]
}, },
"devDependencies": { "devDependencies": {
"@fullhuman/postcss-purgecss": "^2.1.0",
"@vuepress/plugin-google-analytics": "^1.4.0",
"autoprefixer": "^9.7.5",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0", "eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1", "eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.1", "eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3", "eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2", "eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0", "eslint-plugin-react-hooks": "^3.0.0",
"postcss-cli": "^7.1.0", "eslint-plugin-react": "^7.19.0",
"tailwindcss": "^1.2.0", "eslint": "^6.8.0"
"vuepress": "^1.4.0"
} }
} }