Code Monkey home page Code Monkey logo

some-sample-app's Introduction

Get stuff running

Sample frontend and backend applications to be used to test out various ways of getting applications to run.

Frontend

The frontend is just a static index.html that tries to fetch a tip from the backend and display it.

Building and running

No actual build process needed -- edit index.html to point to an appropriate backend endpoint.

You can just open src/frontend/index.html directly in your browser or run it in a docker container with nginx:

cd src/frontend
docker build -t app-frontend .
docker run --rm -p 8080:80 app-frontend

If running in docker, open your browser and go to http://localhost:8080

Backend

API for getting a tip of the day in the format:

{
    "tipOfTheDay": "Some tip"
}

Tips can be sourced from various sources. API only has one route: GET / that serves the response.

Building and running

You can build and run the backend in a docker container.

cd src/backend
docker build -t app-backend .
docker run --rm -p 1337:1337 app-backend

If you have python installed you can also run it directly.

cd src/backend
pip install -r requirements.txt
python serve.py

Once the backend is running, open your browser and go to http://localhost:1337.

some-sample-app's People

Contributors

sebastianhallen avatar eliasbrange 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.