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

https://github.com/neulhan/onair

fiber-air-docker development environment boilerplate, examples
https://github.com/neulhan/onair

air docker-compose go

Last synced: 11 months ago
JSON representation

fiber-air-docker development environment boilerplate, examples

Awesome Lists containing this project

README

          

# ON AIR!
fiber-air-docker development environment boilerplate

![](static/ONAIR.png)

## Run Project Development
```bash
vi .env/dev.env

PORT=:9000
POSTGRES_HOST=onair-pg
POSTGRES_DB=onair
POSTGRES_USER=onair
POSTGRES_PASSWORD=onair
POSTGRES_PORT=5432
POSTGRES_TZ=Asia/Seoul
PGDATA=/var/lib/postgresql/data/db-files/
SECRET_KEY=a-o{<%MyF.apGy' /bin/bash
...
root@49d68bd0cacd:/# psql -U
psql (13.1 (Debian 13.1-1.pgdg100+1))
Type "help" for help.
...
```

```
# \dt
List of relations
Schema | Name | Type | Owner
--------+-----------+-------+---------
public | books | table | neulhan
(3 rows)
...

# SELECT * FROM books LIMIT 1;
id | created_at | updated_at | deleted_at | name | email | pass | logged_in
----+-------------------------------+-------------------------------+------------+-------+-------+------+-----------
1 | 2021-01-19 00:14:24.580872+09 | 2021-01-19 00:14:24.580872+09 | | | | | t
(1 row)
...
```