https://github.com/douglasmatosdev/marvel
This is a simple client at consumes Marvel API
https://github.com/douglasmatosdev/marvel
api marvel-api nextjs styled-components typescript
Last synced: about 2 months ago
JSON representation
This is a simple client at consumes Marvel API
- Host: GitHub
- URL: https://github.com/douglasmatosdev/marvel
- Owner: douglasmatosdev
- Created: 2023-07-03T17:09:04.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-11T00:01:16.000Z (almost 2 years ago)
- Last Synced: 2025-02-19T12:55:22.731Z (3 months ago)
- Topics: api, marvel-api, nextjs, styled-components, typescript
- Language: TypeScript
- Homepage: https://marvel-developer.vercel.app
- Size: 576 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Marvel

## [Online DEMO](https://marvel-developer.vercel.app/)
To start the application, you must first obtain the Marvel plublic key and
private key.To do this, go to https://developer.marvel.com/ create account, then go to https://developer.marvel.com/documentation/authorization for more details.
After having created the account in `marvel.developer`, you must generate the public key and the private key.
Change the `env.template` file name to `.env.local`
change the file by adding your credentials.
```
NEXT_PUBLIC_API_KEY_NOT_FOUND='YOUR API KEY NOT FOUND'
NEXT_PUBLIC_MARVEL_API_PUBLIC_KEY='Your Marvel api plublic key'
NEXT_PUBLIC_MARVEL_API_PRIVATE_KEY='Your Marvel api private key'
```Now install the dependencies.
```zsh
yarn install
```Now we can run application.
```zsh
yarn dev
```