Compare commits

...

16 Commits

Author SHA1 Message Date
Levente Orban
c1752efe4b chore: add support me section to README.md 2025-10-15 10:44:41 +02:00
Levente Orban
491d0020bd fix: remove dev omit 2025-10-10 21:58:23 +02:00
Levente Orban
5c1182dc66 fix: remove dev omit 2025-10-10 21:57:17 +02:00
Levente Orban
638b5ff1ca feat: add an option to remove the landing page 2025-10-10 21:37:50 +02:00
Levente Orban
069ca11917 feat: add an option to remove the landing page 2025-10-10 21:32:59 +02:00
Levente Orban
4675fa4623 feat: add an option to remove the landing page 2025-10-10 21:29:18 +02:00
Levente Orban
af88d6462b feat: add an option to remove the landing page 2025-10-10 18:32:28 +02:00
Levente Orban
ef6005e648 feat: add an option to remove the landing page 2025-10-10 18:27:58 +02:00
Levente Orban
11875b4a1e feat: add an option to remove the landing page 2025-10-10 18:11:18 +02:00
Levente Orban
22038f7779 feat: add an option to remove the landing page 2025-10-10 10:42:46 +02:00
Levente Orban
de2cb07a15 feat: add an option to remove the landing page 2025-10-10 10:37:52 +02:00
Levente Orban
ffc29b9c24 feat: add an option to remove the landing page 2025-10-10 10:29:32 +02:00
Levente Orban
4860b9439c feat: add an option to remove the landing page 2025-10-10 10:26:56 +02:00
Levente Orban
d10af13134 feat: add an option to remove the landing page 2025-10-10 10:17:06 +02:00
Levente Orban
c98260efec feat: add an option to remove the landing page 2025-10-10 10:06:34 +02:00
Levente Orban
a40b83c2b3 feat: i18n translation check
feat: i18n translation check
2025-09-29 10:58:35 +02:00
9 changed files with 59 additions and 13 deletions

View File

@@ -13,3 +13,5 @@ DATABASE_URL="postgres://cactoide:cactoide_password@localhost:5432/cactoide_data
APP_VERSION=latest
PORT=3000
HOSTNAME=0.0.0.0
PUBLIC_LANDING_INFO=true

View File

@@ -60,6 +60,8 @@ jobs:
with:
context: .
file: ./Dockerfile
build-args: |
PUBLIC_LANDING_INFO=${{ vars.PUBLIC_LANDING_INFO }}
push: true
platforms: linux/amd64,linux/arm64
cache-from: type=gha

View File

@@ -28,6 +28,8 @@ jobs:
- name: Build application
run: npm run build
env:
PUBLIC_LANDING_INFO: ${{ vars.PUBLIC_LANDING_INFO }}
- name: Test build output
run: |

View File

@@ -3,25 +3,27 @@ WORKDIR /app
COPY package*.json .
RUN npm ci
ARG PUBLIC_LANDING_INFO
ENV PUBLIC_LANDING_INFO=$PUBLIC_LANDING_INFO
COPY . .
RUN npm run build
RUN npm prune --production
FROM node:20-alpine
WORKDIR /app
COPY --from=builder /app/build build/
COPY --from=builder /app/node_modules node_modules/
COPY package.json .
EXPOSE 3000
ENV PORT 3000
ENV HOSTNAME "0.0.0.0"
HEALTHCHECK --interval=30s --timeout=10s --start-period=10s --retries=3 \
CMD wget --no-verbose --tries=1 --spider http://127.0.0.1:3000/healthz || exit 1
EXPOSE 3000
CMD [ "node", "build" ]

View File

@@ -55,7 +55,18 @@ Your app will be available at `http://localhost:5173`. You can use the Makefile
Use the `database/seed.sql` if you want to populate your database with dummy data.
### i18n
### Options
#### 1. Landing page option
Supports a conditional landing page display based on the `PUBLIC_LANDING_INFO` environment variable. If you don't want to show your users the cactoide landing page, just use the `PUBLIC_LANDING_INFO=false` variable. This will automatically remove the landing home page and redirect users to the `/discover` page.
This is useful for:
- Creating a minimal discovery-focused experience
- Customizing the user journey based on deployment environment
#### 2. i18n
There is no proper i18n implemented, we have an `/i18n` folder with specific languages. To use an existing translation, just rename the language code JSON file to `messages.json` and you are ready to go. If you would like to add a new translation (which is really appreciated), just create a new `<language_code>.json` file and add the translations from the `messages.json`.
@@ -71,6 +82,19 @@ make i18n
make i18n FILE=src/lib/i18n/it.json
```
### Support
Cactoide is an open-source project licensed under `AGPL-3.0`. Its growth and development are possible thanks to the amazing support of the community. This project is the result of many late nights, weekends, and after-hours work.
It isnt backed by a big company. Development depends on the support and generosity of people like you. With your help, I can focus more on making Cactoide even better and building tools that make coding more enjoyable.
You can support in a few ways:
- Send a one-time donation via [paypal.me/zenoazurben](paypal.me/zenoazurben)
- Reach me directly: leventeorb[@]gmail.com
If you enjoy using Cactoide, or if your business depends on it, please consider sponsoring its development. Your support keeps the project alive, improves it for everyone, and helps create educational content like blog posts and videos for the whole Cactoide community.
### License
This project is licensed under the `AGPL-3.0 License` - see the [LICENSE](./LICENSE) file for details.

View File

@@ -1,7 +1,7 @@
{
"name": "cactoide",
"private": true,
"version": "0.0.3",
"version": "0.1.1",
"type": "module",
"scripts": {
"dev": "vite dev",

View File

@@ -2,6 +2,7 @@
import { page } from '$app/stores';
import { goto } from '$app/navigation';
import { t } from '$lib/i18n/i18n.js';
import { PUBLIC_LANDING_INFO } from '$env/static/public';
// Check if current page is active
const isActive = (path: string): boolean => {
@@ -24,12 +25,14 @@
<!-- Navigation -->
<div class="md:flex md:items-center md:space-x-8">
{#if PUBLIC_LANDING_INFO !== 'false'}
<button
on:click={() => goto('/')}
class={isActive('/') ? 'text-violet-400' : 'cursor-pointer'}
>
{t('navigation.home')}
</button>
{/if}
<button
on:click={() => goto('/discover')}

View File

@@ -3,7 +3,7 @@
import Navbar from '$lib/components/Navbar.svelte';
import { t } from '$lib/i18n/i18n.js';
let { data } = $props();
let { data, children } = $props();
</script>
<svelte:head>
@@ -21,7 +21,7 @@
<!-- Main content -->
<main class="relative z-10">
<slot />
{@render children?.()}
</main>
<!-- Footer -->

View File

@@ -0,0 +1,11 @@
import { redirect } from '@sveltejs/kit';
import type { PageServerLoad } from './$types';
import { PUBLIC_LANDING_INFO } from '$env/static/public';
export const load: PageServerLoad = async () => {
if (PUBLIC_LANDING_INFO === 'false') {
throw redirect(302, '/discover');
}
return {};
};