The following repository is a todo
API example developed with NodeJS, the Express framework and Postgres.
This repo serves two main goals:
- Example application with docker
- A Todo Backend project with node, express and postgresql
The following README
is a guide to build and deploy. You will also be able to run this project locally, and use it as a starter app for NodeJS Docker projects.
Be sure to star/watch this repo to stay up-to-date with any changes. If you have any questions or suggestions regarding this example , please submit an
There are a few resources to make sure you have available during this guide.
This section makes the assumption that you will be following along from start to finish. If you wish to skip the deployment to Heroku, ignore step 5.
- Docker CE - Container service everything will run on
- A public, cloud based Github Account - Git Repository service
- These must be cloud based, and not on your own servers.
- Heroku Account - App hosting
Signup for each of these is free, and should only take you a few minutes if you don't already have one. You can use your current accounts if you already have one available.
Once you have everything ready to go, you can move on to the next step.
This project uses Jest integration testing of the todo
api, and eslint for code linting.
In this section, you will set up your repositor and test the build locally.
Using the account you set up in the Getting Started section, you will now create your own repository.
Since this repository is on Github, you can [fork this repo] ```(https://help.github.com/articles/fork-a-repo/) and move on to the next step.
Make sure to copy the 'Repository Clone URL' link for the next step, you will use it to set up the project.
You now should have a remote repository that is publicly accessible in your account.
Navigate to the location on your system that you forked this repo to.
Inside the directory nodejs-express-todoapp-dockerized and type docker-compose up --build
.
This process may take some time.
Much like continuous integration, continuous deployment is the practice of shipping code to production on a frequent basis. You can add a deployment step that runs when all tests pass. You can also filter based on specific criteria like tags, which this repo does. When the branch is master
and all tests pass, we deploy immediately following to Heroku.
Let's get the app set up, and start deploying code.
- Login to Heroku (if not already)
- Click
New
->Create New App
- You can leave the defaults, or change them as needed
- Click the
Create App
button
This app uses PostgreSQL
as it's database, and Heroku has a free add-on you can use.
- Click
Resources
- Under
Add-ons
, search forpostgres
- In the results drop down, click on "Heroku Postgres"
- Leave the selction as
Hobby Dev - Free
, then click theProvision
button.
Copy the new application name for use later.
At this point, you have everything you need to test and deploy the project.
- Make sure all files are added, and commit your changes.
- Push to the master branch of your remote repository.
When complete and the build is green, you should now be able to navigate to the app with the Heroku provided url yourappname.heroku.com
.
If you run into trouble at any point, please submit an [issue here] !!!!(https://github.com/co.