Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,5 @@ yarn-error.log
.pnp.js
# Yarn Integrity file
.yarn-integrity

.cache/
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,22 +51,22 @@ You can refer to Netlify deploy preview on the pull request.

You can use gh-pages as an alternative 👉 [coderbunker.github.io/coderbunker.ca](https://coderbunker.github.io/coderbunker.ca/)

```
```bash
gatsby clean
npm run deploy
```
or
```
```bash
gatsby clean
gatsby build --prefix-paths && gh-pages -d public -r [email protected]:coderbunker/coderbunker.ca.git
```

### Build
```
```bash
npm run build
```
or
```
```bash
gatsby build
```

Expand Down
3,010 changes: 3,010 additions & 0 deletions bun.lock

Large diffs are not rendered by default.

Binary file added bun.lockb
Binary file not shown.
61 changes: 61 additions & 0 deletions flake.lock

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

40 changes: 40 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
description = "Gatsby development environment for coderbunker.ca";

inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};

outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
nodejs_24
bun

# Native dependencies often needed for Gatsby/Sharp/Node-gyp
python3
pkg-config
vips
libpng
autoconf
automake
nasm
imagemagick
];

shellHook = ''
echo "Welcome to the Coderbunker.ca development environment!"
echo "Node version: $(node --version)"
echo "Bun version: $(bun --version)"
export PATH=$PWD/node_modules/.bin:$PATH
'';
};
}
);
}
4 changes: 2 additions & 2 deletions gatsby-config.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
module.exports = {
pathPrefix: '/coderbunker.ca',
// pathPrefix: '/coderbunker.ca',
siteMetadata: {
title: 'Coderbunker Canada',
author: '@Carms-dev',
description: 'Coderbunker est une communauté internationale de passionnés de développement logiciel. Nous fonctionnons sur une base de budget d\'ingénierie mensuels prépayés sur lesquels nous recrutons des équipes formées de talents flexibles qui participent activement dans la construction d\'une communauté qui les rends heureux.',
siteUrl: 'https://www.coderbunker.ca/',
siteUrl: 'https://coderbunker.ca/',
},
plugins: [
'gatsby-transformer-json',
Expand Down
Loading