https://github.com/abritopach/elixir_ninety_nine_backend_challenge
Project that shows how to build an Elixir API Rest
https://github.com/abritopach/elixir_ninety_nine_backend_challenge
elixir elixir-phoenix phoenix-framework
Last synced: 10 months ago
JSON representation
Project that shows how to build an Elixir API Rest
- Host: GitHub
- URL: https://github.com/abritopach/elixir_ninety_nine_backend_challenge
- Owner: abritopach
- Created: 2019-01-10T09:23:39.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-11T11:32:25.000Z (over 7 years ago)
- Last Synced: 2025-03-21T09:14:16.800Z (over 1 year ago)
- Topics: elixir, elixir-phoenix, phoenix-framework
- Language: Elixir
- Homepage:
- Size: 5.06 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ElixirNinetyNineBackendChallenge
Project that shows how to build an Elixir API Rest. This project exposes (using REST routes endpoints) the following info using the JSON:API standard:
* List of companies (http://localhost:4000/testapi/v1/companies)
* Info by company (http://localhost:4000/testapi/v1/companies/{companyId})
* Time series of the company share price. It should support hourly, daily and weekly time series.
-> All http://localhost:4000/testapi/v1/historical
-> Dayly http://localhost:4000/testapi/v1/historical/{ric}/daily
-> Weekly Dayly http://localhost:4000/testapi/v1/historical/{ric}/weekly
This project was generated with [MIX](https://elixir-lang.org/getting-started/mix-otp/introduction-to-mix.html).
Technologies: Elixir.

## Demo Example

To start your Phoenix app:
* Install dependencies with `mix deps.get`
* Create and migrate your database with `mix ecto.create && mix ecto.migrate`
* Install Node.js dependencies with `npm install`
* Start Phoenix endpoint with `mix phoenix.server`
Now you can visit [`localhost:4000`](http://localhost:4000) from your browser.
Ready to run in production? Please [check our deployment guides](http://www.phoenixframework.org/docs/deployment).
## Learn more
* Official website: http://www.phoenixframework.org/
* Guides: http://phoenixframework.org/docs/overview
* Docs: https://hexdocs.pm/phoenix
* Mailing list: http://groups.google.com/group/phoenix-talk
* Source: https://github.com/phoenixframework/phoenix