alpha
Login
or
Join now
nandi.uk
/
semble
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
formatting
author
Wesley Finck
date
9 months ago
(Oct 21, 2025, 5:34 PM -0700)
commit
d66e3045
d66e30455f03d8c6754d6721ea99def21ed21bf0
parent
71b8ec60
71b8ec60e2e38570b1f43c0098b236df3188d7f6
+10
-3
3 changed files
Expand all
Collapse all
Unified
Split
src
shared
infrastructure
config
EnvironmentConfigService.ts
http
app.ts
services
CookieService.ts
+2
-1
src/shared/infrastructure/config/EnvironmentConfigService.ts
View file
Reviewed
···
48
48
private config: EnvironmentConfig;
49
49
50
50
constructor() {
51
51
-
const environment = (process.env.NODE_ENV || Environment.LOCAL) as Environment;
51
51
+
const environment = (process.env.NODE_ENV ||
52
52
+
Environment.LOCAL) as Environment;
52
53
53
54
this.config = {
54
55
environment,
+4
-1
src/shared/infrastructure/http/app.ts
View file
Reviewed
···
6
6
import { createAtprotoRoutes } from '../../../modules/atproto/infrastructure/atprotoRoutes';
7
7
import { createCardsModuleRoutes } from '../../../modules/cards/infrastructure/http/routes';
8
8
import { createFeedRoutes } from '../../../modules/feeds/infrastructure/http/routes/feedRoutes';
9
9
-
import { EnvironmentConfigService, Environment } from '../config/EnvironmentConfigService';
9
9
+
import {
10
10
+
EnvironmentConfigService,
11
11
+
Environment,
12
12
+
} from '../config/EnvironmentConfigService';
10
13
import { RepositoryFactory } from './factories/RepositoryFactory';
11
14
import { ServiceFactory } from './factories/ServiceFactory';
12
15
import { UseCaseFactory } from './factories/UseCaseFactory';
+4
-1
src/shared/infrastructure/http/services/CookieService.ts
View file
Reviewed
···
1
1
import { Response, Request } from 'express';
2
2
-
import { EnvironmentConfigService, Environment } from '../../config/EnvironmentConfigService';
2
2
+
import {
3
3
+
EnvironmentConfigService,
4
4
+
Environment,
5
5
+
} from '../../config/EnvironmentConfigService';
3
6
4
7
export interface CookieOptions {
5
8
httpOnly: boolean;