Giter Club home page Giter Club logo

organized-for-deployment's Introduction

Organized for Deployment

A model of how you can set up your project for development, testing & deployment.

Contents

General

Configuration

This application reads the secrets from a .env file at the root of this project. A secret is something you don't want to commit to a public repository. The password for your database for instance. A node package dotenv is used to read and parse this file and provides an interface we can use.

Create a file called .env to the root.

DB_HOST=YOUR_IP_OR_DOMAIN
DB_NAME=YOUR_DATABASE_NAME
DB_USER=YOUR_DATABASE_USER
DB_PASSWORD=YOUR_DATABASE_USER_PASSWORD
JWT_SECRET=A_JWT_SECRET_A_RANDOM_STRING_OF_CHARACTERS

DB_HOST A domain or IP the host of your database.

DB_NAME The name of your database. The application will connect to this database.

DB_USER User used to authenticate to the database. Typically a user called root is created in MySQL. Although it is not recommend to use that user in production.

JWT_SECRET Within the app a standard called JWT is used to manage authorization. This requires a random complicated password like string to sign tokens.

Development

Getting started

Make sure you configure your secrets in line with your development environment. See the configuration section.

Install backend dependencies.

npm install

Install frontend dependencies

yarn install

Database

Your application will need to persist data. The interaction with the database is abstracted by an ORM (Object role modelling) called Sequalize .

Make sure you configure your secrets in line with your development environment. See the configuration section. You can create the database and tables by running the sync.js script.

node api/scripts/sync.js

Optionally you can seed the tables with some test data by running:

node api/scripts/seed.js

API (Backend)

To develop just the API separately from the frontend run:

npm run dev-api

This will run your api as though it were part of the full live project. All routes will be have api/ appended before them and a get request to / will return the string "frontend"

Client (Frontend)

To develop just the frontend separately from the API run:

npm run dev-client

DISCLAIMER! this will only work if you have set up a mock-api

Full App

You can also develop the frontend and API in parallel by running:

npm run dev

This script will run the frontend and backend on separate ports, the backend on localhost:5000 with nodemon. The frontend will be run using create-react-app's start script, redirecting all API calls to localhost:5000.

TOP


Deployment

The main index.js in this directory is for deployment. It provides access to your api behind /api and statically serves the client from /client/build. You can copy-paste this file directly, there should be need to modify it for your project.

In order for your project to run on Heroku, the main package.json needs a start command. This is already taken care of for you.

Mock

To mock deployment on your local machine you can run these commands. The app will build and run the same as it will on Heroku to help you troubleshoot your deployed project locally.

npm run heroku-postbuild
npm run start

Getting started

Create a Heroku account and install the Heroku cli. Verify the installation with

heroku status

Initialize Heroku inside the project folder by using:

heroku create

Note it is likely you want to create the app with some options, a useful for the project.

Manual

You can deploy your project from your local machine by pushing to the Heroku master repository.

git push heroku master

TOP


Testing

To locally execute your tests, run the following commands

Frontend

cd client
npm install
npm run test:watch

Backend

cd api
npm install
npm run test:watch

Continuous integration

Test run on each commit on the master branch using Github actions. The configuration can be found in .github/workflows/node.js.yml.

TOP


Helpful Links

TOP


organized-for-deployment's People

Contributors

colevanderswands avatar dirk-jacobs-supportsquare avatar mattekenpis avatar mmelcot avatar toinne avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

organized-for-deployment's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.