Browse Source

Site deployed

Denis Merigoux 9 years ago
parent
commit
b50ba7037b
3 changed files with 3 additions and 2 deletions
  1. 1 0
      .gitignore
  2. 1 1
      counter/templates/homeTemplate.html
  3. 1 1
      seum/settings.py

+ 1 - 0
.gitignore

53
 *.log
53
 *.log
54
 *.sqlite3
54
 *.sqlite3
55
 counter/migrations/
55
 counter/migrations/
56
+static/
56
 
57
 
57
 # Sphinx documentation
58
 # Sphinx documentation
58
 docs/_build/
59
 docs/_build/

+ 1 - 1
counter/templates/homeTemplate.html

1
 {% extends 'baseTemplate.html' %} {% block title %}Compteurs{% endblock %} {% block content %}
1
 {% extends 'baseTemplate.html' %} {% block title %}Compteurs{% endblock %} {% block content %}
2
 <div class="text-center">
2
 <div class="text-center">
3
-	<h1>Seum Center</h1>
3
+	<h1>SeumBook™</h1>
4
 </div>
4
 </div>
5
 <div class="container-fluid">
5
 <div class="container-fluid">
6
 	<div class="row">
6
 	<div class="row">

+ 1 - 1
seum/settings.py

14
 
14
 
15
 # Build paths inside the project like this: os.path.join(BASE_DIR, ...)
15
 # Build paths inside the project like this: os.path.join(BASE_DIR, ...)
16
 BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
16
 BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
17
-
17
+STATIC_ROOT = os.path.join(BASE_DIR, "static/")
18
 
18
 
19
 # Quick-start development settings - unsuitable for production
19
 # Quick-start development settings - unsuitable for production
20
 # See https://docs.djangoproject.com/en/1.9/howto/deployment/checklist/
20
 # See https://docs.djangoproject.com/en/1.9/howto/deployment/checklist/