Skip to content

Commit d191e57

Browse files
authored
Merge pull request #49 from treefarmstudio/next
[RELEASE] Version 3.1.0
2 parents 557fdd6 + f4674d5 commit d191e57

20 files changed

+1872
-1692
lines changed

.astro/types.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/// <reference types="astro/client" />

.firebaserc

-6
This file was deleted.

.github/workflows/deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ jobs:
3838
uses: denoland/deployctl@v1
3939
with:
4040
project: "odyssey-theme"
41-
entrypoint: "server/entry.mjs"
41+
entrypoint: "https://jsr.io/@std/http/1.0.7/file_server.ts"
4242
root: "dist"

.idx/dev.nix

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# To learn more about how to use Nix to configure your environment
2+
# see: https://developers.google.com/idx/guides/customize-idx-env
3+
{ pkgs, ... }: {
4+
# Which nixpkgs channel to use.
5+
channel = "stable-23.11"; # or "unstable"
6+
7+
# Use https://search.nixos.org/packages to find packages
8+
packages = [
9+
# pkgs.go
10+
# pkgs.python311
11+
# pkgs.python311Packages.pip
12+
# pkgs.nodejs_20
13+
# pkgs.nodePackages.nodemon
14+
];
15+
16+
# Sets environment variables in the workspace
17+
env = {};
18+
idx = {
19+
# Search for the extensions you want on https://open-vsx.org/ and use "publisher.id"
20+
extensions = [
21+
# "vscodevim.vim"
22+
];
23+
24+
# Enable previews
25+
previews = {
26+
enable = true;
27+
previews = {
28+
# web = {
29+
# # Example: run "npm run dev" with PORT set to IDX's defined port for previews,
30+
# # and show it in IDX's web preview panel
31+
# command = ["npm" "run" "dev"];
32+
# manager = "web";
33+
# env = {
34+
# # Environment variables to set for your server
35+
# PORT = "$PORT";
36+
# };
37+
# };
38+
};
39+
};
40+
41+
# Workspace lifecycle hooks
42+
workspace = {
43+
# Runs when a workspace is first created
44+
onCreate = {
45+
# Example: install JS dependencies from NPM
46+
# npm-install = "npm install";
47+
};
48+
# Runs when the workspace is (re)started
49+
onStart = {
50+
# Example: start a background task to watch and re-build backend code
51+
# watch-backend = "npm run watch-backend";
52+
};
53+
};
54+
};
55+
}

.vscode/settings.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"IDX.aI.enableInlineCompletion": true,
3+
"IDX.aI.enableCodebaseIndexing": true
4+
}

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 Little Sticks
3+
Copyright (c) 2024 Treefarm Studio LLC
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<br/>
66
<div align="center">
77
<a href="https://twitter.com/jaydanurwin">
8-
<img src="assets/twitter-badge.svg" alt="Follow Little Sticks on Twitter"/>
8+
<img src="assets/twitter-badge.svg" alt="Follow Jaydan Urwin on Twitter"/>
99
</a>
1010
<a href="https://sapling.lemonsqueezy.com/checkout/buy/9b78751f-6382-442d-ac99-32c2318b70a0">
1111
<img src="assets/sponsor-badge.svg" alt="Sponsor This Repo" />

firebase.json

-11
This file was deleted.

0 commit comments

Comments
 (0)