An open API service indexing awesome lists of open source software.

https://github.com/studyresearchprojects/a-bit-of-deno

🦕 A try on Deno's ecosystem with Oak framework for Web APIs
https://github.com/studyresearchprojects/a-bit-of-deno

api deno denoland oak typescript webapi

Last synced: about 1 month ago
JSON representation

🦕 A try on Deno's ecosystem with Oak framework for Web APIs

Awesome Lists containing this project

README

          



a-bit-of-deno


🦕 A try on Deno's ecosystem with Oak framework for Web APIs

## Usage

### Requirements
- [Deno](https://deno.land/#installation)

### Recomendations
[Visual Studio Code](https://github.com/microsoft/vscode) support is guaranteed for Deno and this project, so its highly recommended
to use Visual Studio Code in order to work with this project.

It is also recommended to install [justjavac](https://github.com/justjavac)'s extension [vscode_deno](https://github.com/denoland/vscode_deno) for Deno support.

### Running Locally

```sh
# runs the server locally
$ deno run -A Drakefile.ts start

# create a .env file for the project
$ deno run -A ./Drakefile.ts make-env
```

### Docker & MySQL

```sh
# build the docker image
sudo docker build -t mysql-bit-of-deno ./docker/

# run the docker image
sudo docker run --env-file ./.env mysql-bit-of-deno
```