We Ignite Tech CV base
[TODO: insert here a short description of the application (with f.ex the main features of the application)]
The application is composed of:
- a front-end served by a Koa server
- a back-end API
- a configuration to run on CircleCI (TODO: Not implemented yet!)
The backend API has two endpoints:
/api/now
returns today's date in JSON format{'today': '...'}
/healthcheck
returns the String 'RUNNING'
Start the application in development mode (with runtime reload)
Runs all the test
This command will build your application into the /build
folder
This will run your application as it should run on the server. You need to rund the build before that (npm run-script build
)
The static part of the serve will serve files located into the build
folder.
Open http://localhost:3000 to view it in the browser
Use Postman to test the API enpoints available like http://localhost:3000/api/now for example
https://medium.com/hackernoon/serving-react-and-koa-together-720ba6668298