Git Product home page Git Product logo

next-holidays's Introduction

Next Holidays

This is a very tiny Next.js frontend that reads from the hols API for Canadian statutory holidays. It will tell you your next provincial or federal holiday, and doesn't do much else.

Try it out ๐Ÿ‘‰ https://next-holidays-7qr7hdv3aa-ue.a.run.app/

Getting started

npm is a javascript package manager. It downloads project dependencies and runs node applications.

A docker container allows a developer to package up an application and all of its parts. This means we can build an app in any language, in any stack, and then run it anywhere โ€” whether locally or on a server.

Build and run with npm

# install dependencies
npm install

# run application in 'dev' mode
npm run dev

# run application in 'prod' mode
npm run build && npm start

On a Mac, press Control + C to quit the running application.

Run code linting

# run code linter
npm run lint

Build and run as a Docker container

# build an image locally
docker build -t pcraig3/next-holidays .

# run the container
docker run -it -p 80:80 pcraig3/next-holidays

On a Mac, press Control + C to quit the running docker container.

Overriding the default port number or API URL

The Dockerfile sets default values for PORT (80) and API_URL (https://canada-holidays.ca/api).

To override either or both of these environment variables at runtime, pass in the new variable after the -e flag when booting up the container.

# override the port number and the API_URL
docker run -it -e PORT=3000 -e API_URL=https://example.com -p 80:3000 pcraig3/next-holidays

next-holidays's People

Contributors

pcraig3 avatar

Watchers

 avatar

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.