You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For production deployment, contact Karthik at karthik@modelchimp.com
75
+
76
+
1. Modelchimp can be deployed referring the docker-compose.local.yml with the container orchestration of your choice. If you are not using any container orchestration and want to start it manually then you can use the following command
77
+
78
+
```sh
79
+
docker-compose -f docker-compose.local.yml up --build -d
80
+
```
81
+
82
+
This will start the containers in daemon mode on the machine where Modelchimp resides. Modelchimp can be accessed from port 8000
83
+
84
+
2. (Optional) To store the data in an external postgres database. Add the following credentials to the .env file
85
+
86
+
```sh
87
+
DB_HOST=<DB_HOST>
88
+
DB_NAME=<DB_NAME>
89
+
DB_USER=<DB_USER>
90
+
DB_PASSWORD=<DB_PASSWORD>
91
+
DBPORT=
92
+
```
93
+
94
+
3. (Optional) To store the file assets in an s3 bucket. Add the following credentials to the .env file
95
+
96
+
```sh
97
+
AWS_STORAGE_FLAG=True
98
+
AWS_ACCESS_KEY_ID=<ID>
99
+
AWS_SECRET_ACCESS_KEY=<KEY>
100
+
AWS_STORAGE_BUCKET_NAME=<bucket_name>
101
+
```
102
+
103
+
4. (Optional) To invite team members to a project. Add the following email credentials to the .env file
104
+
105
+
```sh
106
+
EMAIL_HOST=
107
+
EMAIL_HOST_USER=
108
+
EMAIL_HOST_PASSWORD=
109
+
EMAIL_PORT=587
110
+
DEFAULT_FROM_EMAIL="noreply@modelchimp.com"
111
+
```
112
+
76
113
77
114
## Documentation
78
115
- Getting Started - https://docs.modelchimp.com/#installation
0 commit comments