An application management system created using Node.js, React, Redux, Express, and a PostgreSQL database.
To use this program locally, you'll need to take the following steps:
-
Clone this repo to your local machine
-
Run the following commands:
* npm install * createdb amsportal * npm run seed For testing run: * createdb amsportal-test * npm test
To use OAuth with Google, complete the step above with a real client ID and client secret from Google
- You can get them here: https://console.developers.google.com/apis/credentials
Set up your .env
or secrets.js
file where you will store the variables needed to run Google OAuth. Variables might look like this:
process.env.GOOGLE_CLIENT_ID = 'hush hush'
process.env.GOOGLE_CLIENT_SECRET = 'pretty secret'
process.env.GOOGLE_CALLBACK = '/auth/google/callback'
Remember to .gitignore the file you use!
Program comes with custom linters. Feel free to customize and change for your purposes.
npm run start-dev
will run the program.
If you want to run the server and/or webpack separately, you can also npm run start-server
and npm run build-client
.
Ready to go world wide? Here's a guide to deployment! There are two (compatible) ways to deploy:
- automatically, via continuous integration
- manually, from your local machine
Either way, you'll need to set up your deployment server to start:
- Set up the Heroku command line tools
heroku login
- Add a git remote for heroku:
-
If you're creating a new app...
heroku create
orheroku create your-app-name
if you have a name in mind.heroku addons:create heroku-postgresql:hobby-dev
to add ("provision") a postgres database to your heroku dyno
-
If you already have a Heroku app...
heroku git:remote your-app-name
You'll need to be a collaborator on the app.
(NOTE: This step assumes that you already have Travis-CI testing your code.) Follow these steps to complete the job.
- Run
git checkout master && git pull && git checkout -b f/travis-deploy
(or use some other new branch name). - Un-comment the bottom part of
.travis.yml
(thebefore_deploy
anddeploy
sections) - Add your Heroku app name to
deploy.app
, where it says "YOUR HEROKU APP NAME HERE". For example, if your domain iscool-salty-conifer.herokuapp.com
, your app name iscool-salty-conifer
. - Install the Travis CLI tools by following the instructions here.
- Run
travis encrypt $(heroku auth:token) --org
to encrypt your Heroku API key. Warning: do not run the--add
command suggested by Travis, that will rewrite part of our existing config! - Copy-paste your encrypted API key into the
.travis.yml
file underdeploy.api_key.secure
, where it says "YOUR ENCRYPTED API KEY HERE". git add -A && git commit -m 'travis: activate deployment' && git push -u origin f/travis-deploy
- Make a PR for the new branch, get it approved, and merge it into master.
That's it! From now on, whenever master
is updated on GitHub, Travis will automatically push the app to Heroku for you.
Some developers may prefer to control deployment rather than rely on automation. Your local copy of the application can be pushed up to Heroku at will, using Boilermaker's handy deployment script:
- Make sure that all your work is fully committed and pushed to your master branch on Github.
- If you currently have an existing branch called "deploy", delete it now (
git branch -d deploy
). We're going to use a dummy branch with the name "deploy" (see below), so if you have one lying around, the script below will error npm run deploy
- this will cause the following commands to happen in order:
git checkout -b deploy
: checks out a new branch called "deploy". Note that the name "deploy" here isn't magical, but it needs to match the name of the branch we specify when we push to our heroku remote.webpack -p
: webpack will run in "production mode"git add -f public/bundle.js public/bundle.js.map
: "force" add the otherwise gitignored build filesgit commit --allow-empty -m 'Deploying'
: create a commit, even if nothing changedgit push --force heroku deploy:master
: push your local "deploy" branch to the "master" branch on herokugit checkout master
: return to your master branchgit branch -D deploy
: remove the deploy branch
Now, you should be deployed!
Why do all of these steps? The big reason is because we don't want our production server to be cluttered up with dev dependencies like webpack, but at the same time we don't want our development git-tracking to be cluttered with production build files like bundle.js! By doing these steps, we make sure our development and production environments both stay nice and clean!