Skip to content

Commit c9455d7

Browse files
authored
Merge pull request #337 from captableinc/debug
feat: getting deployable version ready with docker and env changes
2 parents 3e7831a + 194c453 commit c9455d7

File tree

125 files changed

+1252
-2153
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+1252
-2153
lines changed

.env.example

+7-24
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,16 @@
1212
# Next.js environment variables
1313
NODE_ENV="development"
1414
NEXT_PUBLIC_NODE_ENV="development"
15-
BASE_URL="http://localhost:3000"
1615
NEXT_PUBLIC_BASE_URL="http://localhost:3000"
1716

18-
# Next.js collects completely anonymous telemetry data about general usage. Learn more here: https://nextjs.org/telemetry
19-
# Uncomment the following line to disable telemetry at run time
20-
NEXT_TELEMETRY_DISABLED=1
17+
# Disable telemetry at run time
18+
NEXT_TELEMETRY_DISABLED=1 # Injected in Dockerfile
2119

2220
# Prisma
23-
# https://www.prisma.io/docs/reference/database-reference/connection-urls#env
24-
DATABASE_URL="postgres://captable:[email protected]:54321/captable"
21+
DATABASE_URL="postgres://captable:password@pg:5432/captable"
2522

2623
# Next Auth
27-
# You can generate a new secret on the command line with:
28-
# https://next-auth.js.org/configuration/options#secret
29-
30-
# openssl rand -base64 32
24+
# Run `openssl rand -base64 32` to generate a new secret
3125
NEXTAUTH_SECRET="xxxxxxxxxx"
3226
NEXTAUTH_URL="http://localhost:3000"
3327

@@ -36,24 +30,13 @@ GOOGLE_CLIENT_ID="xxxxxxxxxx"
3630
GOOGLE_CLIENT_SECRET="xxxxxxxxxx"
3731

3832
# SMTP
39-
EMAIL_SERVER_HOST="localhost"
40-
EMAIL_SERVER_PORT=1025
41-
EMAIL_SERVER_USERNAME="captable"
42-
EMAIL_SERVER_PASSWORD="password"
43-
EMAIL_SERVER_SECURE=0
44-
# EMAIL_SERVER=smtp://captable:[email protected]:2500
45-
33+
EMAIL_FROM="'Captable, Inc.' <[email protected]>"
34+
EMAIL_SERVER=smtp://captable:password@localhost:1025
4635

4736
# Uploads
48-
UPLOAD_PROVIDER="s3"
4937
UPLOAD_ENDPOINT="http://127.0.0.1:9002"
50-
NEXT_PUBLIC_UPLOAD_DOMAIN="http://127.0.0.1:9002"
51-
52-
# value should be 'auto' while using r2
53-
UPLOAD_REGION="us-east-1"
38+
UPLOAD_REGION="us-east-1" # value should be 'auto' while using r2
5439
UPLOAD_ACCESS_KEY_ID="captable"
5540
UPLOAD_SECRET_ACCESS_KEY="password"
56-
5741
UPLOAD_BUCKET_PUBLIC="captable-public-bucket"
5842
UPLOAD_BUCKET_PRIVATE="captable-private-bucket"
59-

.gitpod.yml

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ tasks:
33
pnpm install &&
44
cp .env.example .env &&
55
export NEXTAUTH_SECRET="$(openssl rand -base64 32)" &&
6-
export BASE_URL="$(gp url 3000)" &&
76
export NEXT_PUBLIC_BASE_URL="$(gp url 3000)" &&
87
export EMAIL_SERVER_PORT=2500
98
command: pnpm db:migrate && pnpm dx

SELF-HOSTING.md

+87-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,90 @@ If you like to self-host Captable, Inc., please schedule a call with us, and we
1414

1515
- **Official Docker Images**:
1616
- <a href="https://hub.docker.com/r/captable/captable" target="_blank">Docker hub</a>
17-
- <a href="https://github.com/captableinc/captable/pkgs/container/captable" target="_blank">Github registry</a>
17+
<!-- - <a href="https://github.com/captableinc/captable/pkgs/container/captable" target="_blank">Github registry</a> -->
18+
19+
- **Environment Variables**:\
20+
Following envrionment variables are required
21+
22+
```bash
23+
NODE_ENV="production"
24+
DATABASE_URL="postgres://user:password@host:port/dbname"
25+
NEXTAUTH_SECRET="xxx" # Generated by `openssl rand -base64 32`
26+
NEXTAUTH_URL="https://your-domain.com"
27+
NEXT_PUBLIC_BASE_URL="https://your-domain.com"
28+
29+
# Email server environment variables
30+
EMAIL_FROM="[email protected]"
31+
32+
# Please use encrypted/TLS connection for SMTP server.
33+
EMAIL_SERVER="smtp://username:password@host:port"
34+
35+
# File uplod environment variables
36+
UPLOAD_REGION="us-west-1" # auto when using Cloudflare R2
37+
UPLOAD_ENDPOINT="https://xxx.r2.cloudflarestorage.com"
38+
UPLOAD_ACCESS_KEY_ID="xxx"
39+
UPLOAD_SECRET_ACCESS_KEY="xxx"
40+
UPLOAD_BUCKET_PUBLIC="public-bucket-name"
41+
UPLOAD_BUCKET_PRIVATE="private-bucket-name"
42+
```
43+
44+
- **Run the docker container**:
45+
46+
```bash
47+
docker run -d \
48+
-e NODE_ENV="replace" \
49+
-e DATABASE_URL="replace" \
50+
-e NEXTAUTH_SECRET="replace" \
51+
-e NEXTAUTH_URL="replace" \
52+
-e NEXT_PUBLIC_BASE_URL="replace" \
53+
-e EMAIL_FROM="replace" \
54+
-e EMAIL_SERVER="replace" \
55+
-e UPLOAD_REGION="replace" \
56+
-e UPLOAD_ENDPOINT="replace" \
57+
-e UPLOAD_ACCESS_KEY_ID="replace" \
58+
-e UPLOAD_SECRET_ACCESS_KEY="replace" \
59+
-e UPLOAD_BUCKET_PUBLIC="replace" \
60+
-e UPLOAD_BUCKET_PRIVATE="replace" \
61+
-p 3000:3000 \
62+
captable/captable
63+
```
64+
65+
- **Setup CORS for file uploads**:\
66+
Some of the services including Cloudflare R2 may require you to setup CORS for file uploads.\
67+
68+
> Here is an sample CORS configuration for Cloudflare R2.
69+
70+
```json
71+
[
72+
{
73+
"AllowedOrigins": [
74+
"https://your-domain.com"
75+
],
76+
"AllowedMethods": [
77+
"HEAD",
78+
"GET",
79+
"POST",
80+
"PUT",
81+
"DELETE"
82+
],
83+
"AllowedHeaders": [
84+
"*"
85+
]
86+
}
87+
]
88+
```
89+
90+
- **Run database migrations**:
91+
92+
```bash
93+
docker exec -it <container_id> npx prisma migrate deploy
94+
```
95+
96+
<!-- Ready -->
97+
- **Access the application**:\
98+
Open your browser and navigate to `https://your-domain.com`
99+
100+
- **Questions?**\
101+
If you have any questions, please schedule a call with us, and we will help you set up your own instance.
102+
103+
<a href="https://captable.inc/schedule/"><img alt="Book us" src="https://cal.com/book-with-cal-dark.svg" /></a>

compose.yml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ services:
77
- POSTGRES_USER=captable
88
- POSTGRES_PASSWORD=password
99
- POSTGRES_DB=captable
10+
- POSTGRES_EXTENSIONS=pgcrypto
1011
ports:
1112
- 54321:5432
1213
volumes:

docker/Dockerfile

+5-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ FROM base AS runner
3939
WORKDIR /app
4040

4141
ENV NODE_ENV production
42-
# Uncomment the following line in case you want to disable telemetry during runtime.
4342
ENV NEXT_TELEMETRY_DISABLED 1
4443

4544
ENV DOCKER_OUTPUT 1
@@ -63,12 +62,17 @@ COPY --from=builder --chown=nextjs:nodejs /app/scripts/migrate.sh ./scripts/migr
6362
COPY --from=builder --chown=nextjs:nodejs /app/prisma/schema.prisma ./prisma/schema.prisma
6463
COPY --from=builder --chown=nextjs:nodejs /app/prisma/migrations ./prisma/migrations
6564

65+
6666
USER nextjs
6767

6868
EXPOSE 3000
6969

7070
ENV PORT 3000
7171

72+
# Run the migration script
73+
# RUN chmod +x ./scripts/migrate.sh
74+
# ENTRYPOINT [ "./scripts/migrate.sh" ]
75+
7276
# server.js is created by next build from the standalone output
7377
# https://nextjs.org/docs/pages/api-reference/next-config-js/output
7478
CMD HOSTNAME="0.0.0.0" node server.js

fly.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ cpus = 1
2626

2727
[deploy]
2828
strategy = "canary"
29-
release_command = "sh ./scripts/migrate.sh"
29+
# release_command = "sh ./scripts/migrate.sh"
3030

3131
[env]
3232
NODE_ENV = "production"

0 commit comments

Comments
 (0)