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
- Host: GitHub
- URL: https://github.com/studyresearchprojects/a-bit-of-deno
- Owner: StudyResearchProjects
- Created: 2020-05-18T23:15:18.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-22T01:29:00.000Z (about 6 years ago)
- Last Synced: 2026-05-14T03:41:03.376Z (about 1 month ago)
- Topics: api, deno, denoland, oak, typescript, webapi
- Language: TypeScript
- Homepage:
- Size: 23.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```