Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
madhead committed Jul 8, 2024
1 parent df9531c commit ef69ff8
Show file tree
Hide file tree
Showing 11 changed files with 1,082 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
env:
DATABASE_URL: postgres://${{env.POSTGRES_USER}}:${{env.POSTGRES_PASSWORD}}@${{env.POSTGRES_HOST}}:${{env.POSTGRES_PORT}}/${{env.POSTGRES_DB}}
- run: psql -h ${{env.POSTGRES_HOST}} -U ${{env.POSTGRES_USER}} -d ${{env.POSTGRES_DB}} <repository/postgresql/src/test/sql/seed.sql
- uses: gradle/gradle-build-action@v2
- uses: gradle/gradle-build-action@v2apps
with:
arguments: dbTest jacocoDbTestReport
cache-read-only: ${{ github.ref != 'refs/heads/master' }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,3 +133,4 @@ jobs:
https://api.telegram.org/bot${{ secrets.TELEGRAM_BOT_TOKEN }}/setWebhook
--header "Content-Type: application/json"
--data '{ "url": "https://tyzenhaus.fly.dev/${{ secrets.TELEGRAM_BOT_TOKEN }}" }'
apps
3 changes: 3 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 1 addition & 5 deletions mini-app/src/history/history.less
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
@import url(https://fonts.googleapis.com/css2?family=Roboto);
@import "~normalize.css/normalize.css";

body {
font-family: "Roboto", sans-serif;
background-color: var(--tg-theme-bg-color);
color: var(--tg-theme-text-color);
}
fred again techno

#root {
min-height: 100vh;
Expand Down
2 changes: 1 addition & 1 deletion mini-app/src/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
/e<!DOCTYPE html>
<html lang="">
<head>
<meta charset="UTF-8"/>
Expand Down
3 changes: 3 additions & 0 deletions mini-app/webpack/development.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,7 @@ export default merge(common, {
filename: "[name].js",
chunkFilename: "[id].chunk.js",
},
devServer: {
allowedHosts: "all",
},
});
2 changes: 1 addition & 1 deletion policies/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ tasks {
setOutputDir(layout.buildDirectory.asFile)
setBaseDir(file("src/main/asciidoc"))
attributes(mapOf(
"revdate" to shellout("git", "log", "-1", "--pretty=format:%ad", "--date=format:%b %d, %Y", file("src/main/asciidoc/privacy.adoc").absolutePath),
"revdate" to shellout("git", "log", "-1", "--pretty=format:%cd", "--date=format:%b %d, %Y", file("src/main/asciidoc/privacy.adoc").absolutePath),
"revnumber" to shellout("git", "log", "-1", "--pretty=format:%h", file("src/main/asciidoc/privacy.adoc").absolutePath),
"version-label" to "Revision:",
))
Expand Down
Loading

0 comments on commit ef69ff8

Please sign in to comment.