Put here a brief description of the project.
An image is worth a 1000 words, so they are always welcome.
Tables can be used to show data:
Column 1 | Column 2 | Column 3 | Column 4 | Column 5 |
---|---|---|---|---|
Row 1 | ||||
Row 2 | ||||
Row 3 | ||||
Row 4 |
Use this site to generate tables automatically.
To host this Platform you will need a Linux server with Docker Engine installed.
- Create a commom docker network for the containers
docker network create -d bridge contrate-cientista-network
- Pull a Postgres image from Docker and set it to use the previously created network
docker run --name contrate-cientista-database -p 5432:5432 \
--network contrate-cientista-network \
-e POSTGRES_PASSWORD=<Password> \
-d postgres:latest
- Pull the Language API from Docker and set it to use the previously created network (Replace the <Key> with each respective API key):
docker run --name contrate-cientista-language-api -p 8000:8000 \
--network contrate-cientista-network \
-e OPENAI_API_KEY=<Key> \
-e AWS_ACCESS_KEY=<Key> \
-e AWS_SECRET_KEY=<Key> \
-e AZURE_LANGUAGE_KEY=<Key> \
-d ayrton297866/contrate-cientista-language-api:latest
- Pull the API from Docker and set it to use the previously created network
docker run --name contrate-cientista-api -p 5000:5000 \
--network contrate-cientista-network \
-e ASPNETCORE_ENVIRONMENT=Production \
-e ASPNETCORE_HTTP_PORTS=5000 \
-d ayrton297866/contrate-cientista-api:latest
Describe here the necessary steps to compile parts or the entire project.
Describe here the necessary steps to enable debugging and other error correction methods in the project.
Describe here the necessary steps to contribute to the project with new versions and adjustments.
Describe here the necessary steps for releasing staging versios.
Describe here the necessary steps for releasing production versios.