-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #82 from eldersantoss/multi-service-deploy
Multi service deploy
- Loading branch information
Showing
50 changed files
with
2,394 additions
and
691 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,3 +134,6 @@ dmypy.json | |
|
||
# Pyre type checker | ||
.pyre/ | ||
|
||
# ssh keys | ||
*.pem |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
web: source scripts/railway_start.sh | ||
web: source scripts/service_start.sh web |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +0,0 @@ | ||
from django.contrib import admin | ||
|
||
# Register your models here. | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +0,0 @@ | ||
from django.db import models | ||
|
||
# Create your models here. | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,27 @@ | ||
{% extends 'base.html' %} | ||
{% extends "base.html" %} | ||
|
||
{% load static %} | ||
|
||
{% block title %}Palpiteiros | Cadastrar{% endblock title %} | ||
|
||
{% block content %} | ||
|
||
<div> | ||
<a href={% if pool %}{% url 'core:pool_home' pool.slug %}{% else %}{% url 'core:index' %}{% endif %}> | ||
<img src={% static 'core/img/palpiteiros.png' %} alt="Logotipo Palpiteiros" | ||
class="small-logo"> | ||
</a> | ||
</div> | ||
|
||
<form action="{% url 'register' %}" method="post" class="main-form"> | ||
{% csrf_token %} | ||
{{ form.as_div }} | ||
<input type="hidden" name="next" value="{{ next }}"> | ||
<input type="submit" value="Criar conta"> | ||
{% csrf_token %} | ||
{{ form.as_div }} | ||
<input type="hidden" name="next" value="{{ next }}"> | ||
<input type="submit" value="Criar conta"> | ||
</form> | ||
|
||
<nav class="menu vertical"> | ||
<a href="{% url 'login' %}">Voltar para login</a> | ||
<a href="{% url 'login' %}">Voltar para login</a> | ||
</nav> | ||
|
||
{% endblock content %} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.