mirror of
https://github.com/immich-app/immich.git
synced 2024-11-17 02:49:01 -07:00
e53625b067
* test(server): auth controller e2e test * test(server): user e2e test * refactor(server): album e2e * fix: linting
22 lines
647 B
TypeScript
22 lines
647 B
TypeScript
import { GenericContainer, PostgreSqlContainer } from 'testcontainers';
|
|
|
|
export default async () => {
|
|
process.env.NODE_ENV = 'development';
|
|
process.env.TYPESENSE_API_KEY = 'abc123';
|
|
|
|
const pg = await new PostgreSqlContainer('postgres')
|
|
.withExposedPorts(5432)
|
|
.withDatabase('immich')
|
|
.withUsername('postgres')
|
|
.withPassword('postgres')
|
|
.withReuse()
|
|
.start();
|
|
|
|
process.env.DB_URL = pg.getConnectionUri();
|
|
|
|
const redis = await new GenericContainer('redis').withExposedPorts(6379).withReuse().start();
|
|
|
|
process.env.REDIS_PORT = String(redis.getMappedPort(6379));
|
|
process.env.REDIS_HOSTNAME = redis.getHost();
|
|
};
|