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
import React from 'react'; | |
import {Text} from 'ink'; | |
import {GradientText} from "battleship-out" | |
type Props = { | |
name: string | undefined; | |
}; | |
export default function App({name = 'Stranger'}: Props) { | |
return ( |
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
components: | |
base_button: &base_button | |
type: button | |
color: primary # Default color for buttons | |
# Other common properties for button components | |
base_number: &base_number | |
type: number | |
# Other common properties for number components |
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
const { ModuleFederationPlugin } = require("webpack").container; | |
const { VueLoaderPlugin } = require("vue-loader"); | |
const { RemoteConfig, veinFinder } = require("remotes-config"); | |
const path = require("path"); | |
const pkg = require("./package.json"); | |
const HtmlWebpackPlugin = require("html-webpack-plugin"); | |
module.exports = { | |
entry: "./src/index", | |
mode: "development", |
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
function getConfig(pkg_json) { | |
switch (pkg_json) { | |
case "store": | |
return { | |
port: 32001, | |
shared: { | |
react: { singleton: true }, | |
"react-dom": { singleton: true }, | |
effector: { singleton: true }, | |
"effector-react": { singleton: true }, |
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
package main | |
import app "shipyard/app/installDependencies" | |
func main() { | |
app.InstallDependencies() | |
} |
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
module.exports = { | |
remotes: { | |
css: { | |
port: 4000, | |
name: 'expose_css', | |
}, | |
cssModule: { | |
port: 4001, | |
name: 'expose_css_modules', | |
}, |
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
/* the contents of index.css */ | |
@import "tailwindcss/base"; | |
@import "tailwindcss/components"; | |
@import "tailwindcss/utilities"; | |
@layer components { | |
.card { | |
background-color: theme("colors.white"); | |
border-radius: theme("borderRadius.lg"); | |
padding: theme("spacing.6"); |
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
build: | |
context: . | |
dockerfile: Dockerfile | |
ports: | |
- "9292:9292" | |
depends_on: | |
- redis | |
redis: | |
image: redis:6.2-alpine |
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
# //ANCHOR - Redis | |
def new_redis_connection | |
Redis.new(password:"227777d4dd1fc61c6f884f",url: ENV["REDISCLOUD_URL"]) | |
end |
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
2024-06-28 20:36:22 /usr/src/app/lib/reference.rb:15: warning: key "cluster" is duplicated and overwritten on line 19 | |
2024-06-28 20:36:22 [2024-06-28 19:36:22] INFO WEBrick 1.8.1 | |
2024-06-28 20:36:22 [2024-06-28 19:36:22] INFO ruby 3.3.3 (2024-06-12) [aarch64-linux] | |
2024-06-28 20:36:22 [2024-06-28 19:36:22] INFO WEBrick::HTTPServer#start: pid=7 port=9292 | |
2024-06-28 20:36:29 /usr/local/bundle/gems/tilt-2.4.0/lib/tilt/haml.rb:84: warning: Haml::Engine#precompiled_method_return_value at /usr/local/lib/ruby/3.3.0/forwardable.rb:159 forwarding to private method Haml::Compiler#precompiled_method_return_value | |
2024-06-28 20:36:29 192.168.65.1 - - [28/Jun/2024:19:36:29 +0000] "GET / HTTP/1.1" 404 44 0.0357 | |
2024-06-28 20:36:29 /usr/local/bundle/gems/tilt-2.4.0/lib/tilt/haml.rb:84: warning: Haml::Engine#precompiled_method_return_value at /usr/local/lib/ruby/3.3.0/forwardable.rb:159 forwarding to private method Haml::Compiler#precompiled_method_return_value | |
2024-06-28 20:36:29 /usr/local/bundle/gems/tilt-2.4.0/l |