-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Telemetry feature & Go backend
- Loading branch information
Showing
51 changed files
with
617 additions
and
1,542 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
; https://editorconfig.org/ | ||
|
||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
indent_style = tab | ||
indent_size = 4 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.{yaml,yml}] | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<component name="ProjectRunConfigurationManager"> | ||
<configuration default="false" name="StartDb" type="docker-deploy" factoryName="docker-compose.yml" | ||
server-name="Docker"> | ||
<deployment type="docker-compose.yml"> | ||
<settings> | ||
<option name="envFilePath" value=""/> | ||
<option name="commandLineOptions" value="--build"/> | ||
<option name="sourceFilePath" value="server/.docker/docker-compose.postgres.yaml"/> | ||
</settings> | ||
</deployment> | ||
<method v="2"/> | ||
</configuration> | ||
</component> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<component name="ProjectRunConfigurationManager"> | ||
<configuration default="false" name="StartServer" type="GoApplicationRunConfiguration" factoryName="Go Application"> | ||
<module name="churrer.xyz" /> | ||
<working_directory value="$PROJECT_DIR$/server" /> | ||
<envs> | ||
<env name="DB_CONNECTION" value="host=localhost user=postgres password=gorm dbname=gorm port=5432 sslmode=disable TimeZone=Europe/Zurich" /> | ||
</envs> | ||
<kind value="FILE" /> | ||
<package value="server" /> | ||
<directory value="$PROJECT_DIR$" /> | ||
<filePath value="$PROJECT_DIR$/server/main.go" /> | ||
<method v="2" /> | ||
</configuration> | ||
</component> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,29 @@ | ||
# churrer.xyz | ||
|
||
[see what it looks like for yourself](https://churrer.xyz) | ||
|
||
## Setup | ||
|
||
### Frontend | ||
|
||
install dependencies and start app using yarn | ||
|
||
```bash | ||
# install dependencies (doesn't include quarkus atm) | ||
yarn install | ||
# start nuxt frontend | ||
yarn client:startdev | ||
``` | ||
if you don't feel like running the yarn command to start the frontend: | ||
|
||
don't worry, I got you covered. simply run the Intellij [StartClient](.run/StartClient.run.xml) run config. | ||
|
||
> [!WARNING] | ||
> `yarn install` and workspaces only work correctly in linux / macos. On windows this doesn't work.<br> | ||
> it's a known [issue](https://github.com/yarnpkg/yarn/issues/4564) in yarn | ||
for more nuxt stuff refer to [the client readme](./client/README.md) | ||
|
||
### Backend | ||
coming eventually. until then refer to [the backend readme](./server/README.md) | ||
|
||
coming eventually |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,30 +3,33 @@ | |
</script> | ||
|
||
<template> | ||
<div class="hero bg-base-300 lg:w-max rounded-2xl shadow-2xl"> | ||
<div class="hero-content flex-col lg:flex-row p-10"> | ||
<!-- <span class="iconify logos--kubernetes iconify-color text-9xl"/>--> | ||
<div class="avatar placeholder"> | ||
<div class="bg-secondary text-neutral-content w-36 rounded-full"> | ||
<span class="text-3xl">Churrer</span> | ||
</div> | ||
</div> | ||
<div> | ||
<h1 class="text-5xl font-bold">Danilo Jakob</h1> | ||
<p class="py-6"> | ||
The developer you were looking for all along! | ||
</p> | ||
<p class="py-6 flex gap-3 content-center"> | ||
<span class="iconify carbon--email text-2xl text-accent"/><a class="link-accent" href="mailto:[email protected]">[email protected]</a> | ||
</p> | ||
<p class="py-6 flex gap-3 content-center"> | ||
<span class="iconify logos--github-icon text-accent w-6 h-6"/><a class="link-accent" href="https://github.com/DaniloMurer">See my work</a> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="hero bg-base-300 lg:w-max rounded-2xl shadow-2xl"> | ||
<div class="hero-content flex-col lg:flex-row p-10"> | ||
<!-- <span class="iconify logos--kubernetes iconify-color text-9xl"/>--> | ||
<div class="avatar placeholder"> | ||
<div class="bg-secondary text-neutral-content w-36 rounded-full"> | ||
<span class="text-3xl">Churrer</span> | ||
</div> | ||
</div> | ||
<div> | ||
<h1 class="text-5xl font-bold">Danilo Jakob</h1> | ||
<p class="py-6"> | ||
The developer you were looking for all along! | ||
</p> | ||
<p class="py-6 flex gap-3 content-center"> | ||
<span class="iconify carbon--email text-2xl text-accent"/><a class="link-accent" | ||
href="mailto:[email protected]">[email protected]</a> | ||
</p> | ||
<p class="py-6 flex gap-3 content-center"> | ||
<span class="iconify logos--github-icon text-accent w-6 h-6"/><a class="link-accent" | ||
href="https://github.com/DaniloMurer">See | ||
my work</a> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<style scoped> | ||
</style> | ||
</style> |
Oops, something went wrong.