├── .gitignore
├── README.md
├── index.html
├── docker-compose.yml
└── index.css
/.gitignore:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ### Run development mode
2 | At your terminal, run `docker-compose up -d`
3 | Go to http://127.0.0.1:3000/admin/install and add
4 | http://127.0.1.1:5000
5 | http://127.0.1.1:3000
6 | http://localhost:5000/
7 | to the permitted domains lists. And add http://127.0.1.1:5000/index.css to the custom css URL.
8 | Then, run `serve` and go to localhost:5000
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Prueba Talk
4 |
5 |
6 |
14 |
15 |
16 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/docker-compose.yml:
--------------------------------------------------------------------------------
1 | # For details on the syntax of docker-compose.yml files, check out:
2 | # https://docs.docker.com/compose/compose-file/compose-file-v2/
3 |
4 | version: '2'
5 | services:
6 | talk:
7 | image: coralproject/talk:4.5.0
8 | restart: always
9 | ports:
10 | - "3000:3000"
11 | depends_on:
12 | - mongo
13 | - redis
14 | environment:
15 | - NODE_ENV=development # remove this line in production
16 | - TALK_MONGO_URL=mongodb://mongo/talk
17 | - TALK_REDIS_URL=redis://redis
18 | - TALK_ROOT_URL=http://127.0.0.1:3000
19 | - TALK_PORT=3000
20 | - TALK_JWT_SECRET=password
21 | mongo:
22 | image: mongo:latest
23 | restart: always
24 | volumes:
25 | - mongo:/data/db
26 | redis:
27 | image: redis:latest
28 | restart: always
29 | volumes:
30 | - redis:/data
31 | volumes:
32 | mongo:
33 | external: false
34 | redis:
35 | external: false
--------------------------------------------------------------------------------
/index.css:
--------------------------------------------------------------------------------
1 | .body{
2 | font-family: 'Open Sans',sans-serif;
3 | font-size: .875em;
4 | }
5 |
6 | .talk-slot-comment-author-name{
7 | font-size: .9em;
8 | font-weight: 700;
9 | }
10 |
11 | .talk-comment-timestamp{
12 | font-size: 10px;
13 | font-weight: 700;
14 | }
15 | .talk-plugin-tag-label {
16 | background-color: #3d699e;
17 | }
18 |
19 | :focus{
20 | outline: 1px dashed black;
21 | }
22 |
23 | /*.talk-plugin-respect-label{
24 | color: #a5ca5a;
25 | }*/
26 |
27 | .talk-stream-comment-content .talk-slot-comment-content{
28 | padding-top: 15px;
29 | padding-bottom: 20px;
30 | }
31 |
32 | .talk-stream-comment-wrapper{
33 | padding: 20px;
34 | box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
35 | }
36 |
37 | .Comment__rootLevel0___1rJSw{
38 | border:0;
39 | }
40 | /*
41 | .talk-embed-stream {
42 | max-width: 848px;
43 | margin: 0 auto;
44 | padding-left: 15px;
45 | padding-right: 15px;
46 | }*/
--------------------------------------------------------------------------------