-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Only one division per team * Only team captain must fulfill division requirements * In rust challenge point calculation and custom scoring functions * Custom flag functions * Email partial partials instead of full reload
- Loading branch information
Showing
43 changed files
with
1,088 additions
and
1,339 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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
name: Deploy Demo to Fly.io | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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
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
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,20 @@ | ||
import { build } from "esbuild"; | ||
import { context } from "esbuild"; | ||
import { build, context } from "esbuild"; | ||
import { solidPlugin } from "esbuild-plugin-solid"; | ||
|
||
const options = { | ||
entryPoints: ['frontend/app.tsx'], | ||
entryPoints: ["frontend/app.tsx"], | ||
bundle: true, | ||
minify: true, | ||
outfile: 'static/app.js', | ||
outfile: "static/app.js", | ||
globalName: "rhombus", | ||
plugins: [solidPlugin()], | ||
}; | ||
|
||
if (process.env.WATCH === 'true') { | ||
if (process.env.WATCH === "true") { | ||
const ctx = await context(options); | ||
|
||
await ctx.watch(); | ||
console.log('Watching client js...'); | ||
console.log("Watching client js..."); | ||
} else { | ||
build(options).catch(() => process.exit(1)); | ||
} |
Oops, something went wrong.