Skip to content

Commit

Permalink
feat: started integration
Browse files Browse the repository at this point in the history
  • Loading branch information
SamCaliman committed Jul 2, 2024
0 parents commit 5c5d95d
Show file tree
Hide file tree
Showing 68 changed files with 14,476 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .commitlintrc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
extends:
- '@commitlint/config-conventional'
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
6 changes: 6 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# ignore husky hooks
.husky/* linguist-vendored

# ignore scripts
scripts/*.js linguist-vendored

26 changes: 26 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Continuos Integration

on:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm install
- name: Build packages
run: |
(cd api; npm run build)
(cd api; npm run build:icons)
(cd web; npm run build:ci)
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.env
production.env
dist
node_modules
api/release

4 changes: 4 additions & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx --no -- commitlint --edit ${1}
6 changes: 6 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

#(cd api; npm run lint:fix)
#(cd web; npm run lint:fix)

7 changes: 7 additions & 0 deletions .husky/pre-push
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
##!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

#(cd api; npm run lint)
#(cd web; npm run lint)


27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Quickstart

This is an Aeria project bootstrapped with [`create-aeria-app`]().
It uses the `npm` package manager, which you may change in the future. You may also replace this README.md file with your own at anytime.

To get documentation, visit [https://aeria.land/](https://aeria.land/).

## Installation

```sh
$ npm install
```

## Running

```sh
$ npm run dev
```

You may sign in into your application visiting `http://localhost:8080/user/signin`.


## Support

- [Official website](https://aeria.land/)
- [Discord community]() (get live support almost 24/7)

Loading

0 comments on commit 5c5d95d

Please sign in to comment.