Skip to content

Commit 942b204

Browse files
rename EVERYTHING to atlantis
1 parent cfe33b6 commit 942b204

139 files changed

Lines changed: 270 additions & 204 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# what is this
2-
this is the website for the hack club [layered](https://layered.hacklub.com) YSWS!
2+
this is the website for the hack club [atlantis](https://atlantis.hacklub.com) YSWS!
33

44
## dev
55
so... you want to help develop the website? here's some detailed setup instructions
66

7-
- run `git clone https://github.com/hellonearth311/layered.git`
7+
- run `git clone https://github.com/hellonearth311/atlantis.git`
88
- create a .env file with this template
99
```
1010
HCA_CLIENT_ID = CLIENT_ID_GOES_HERE
@@ -78,7 +78,7 @@ while the R2 bucket that's used for object storage is free, to obtain one you **
7878
- run `python -m venv .venv`
7979
- wait for vscode to detect the venv and activate it
8080
- run `pip install -r requirements.txt`
81-
- run `cd layered`
81+
- run `cd atlantis`
8282
- run `python manage.py migrate`
8383
- run `docker compose up db`
8484
- open a new terminal tab and run `python manage.py runserver`
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ COPY . .
1717

1818
EXPOSE 8000
1919

20-
CMD sh -c "python manage.py migrate && python manage.py collectstatic --noinput && gunicorn layered.wsgi:application --bind 0.0.0.0:8000"
20+
CMD sh -c "python manage.py migrate && python manage.py collectstatic --noinput && gunicorn atlantis.wsgi:application --bind 0.0.0.0:8000"
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
ASGI config for layered project.
2+
ASGI config for atlantis project.
33
44
It exposes the ASGI callable as a module-level variable named ``application``.
55
@@ -11,6 +11,6 @@
1111

1212
from django.core.asgi import get_asgi_application
1313

14-
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'layered.settings')
14+
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'atlantis.settings')
1515

1616
application = get_asgi_application()
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Django settings for layered project.
2+
Django settings for atlantis project.
33
44
Generated by 'django-admin startproject' using Django 6.0.5.
55
@@ -42,7 +42,7 @@
4242
"BACKEND": "storages.backends.s3boto3.S3Boto3Storage",
4343
},
4444
"staticfiles": {
45-
"BACKEND": "layered.storage.NonStrictManifestStaticFilesStorage",
45+
"BACKEND": "atlantis.storage.NonStrictManifestStaticFilesStorage",
4646
},
4747
}
4848

@@ -69,7 +69,7 @@
6969
'django.contrib.sessions',
7070
'django.contrib.messages',
7171
'django.contrib.staticfiles',
72-
'layered_site',
72+
'atlantis_site',
7373
'storages'
7474
]
7575

@@ -84,7 +84,7 @@
8484
"whitenoise.middleware.WhiteNoiseMiddleware",
8585
]
8686

87-
ROOT_URLCONF = 'layered.urls'
87+
ROOT_URLCONF = 'atlantis.urls'
8888

8989
TEMPLATES = [
9090
{
@@ -101,7 +101,7 @@
101101
},
102102
]
103103

104-
WSGI_APPLICATION = 'layered.wsgi.application'
104+
WSGI_APPLICATION = 'atlantis.wsgi.application'
105105

106106

107107
# Database
@@ -140,8 +140,8 @@
140140
CSRF_TRUSTED_ORIGINS = [
141141
'https://yfvyqtuytp2qa4rsw2cfxv7t.a.shipwrights.dev/',
142142
'https://*.yfvyqtuytp2qa4rsw2cfxv7t.a.shipwrights.dev/',
143-
'https://layered.hacklub.com',
144-
'https://*.layered.hacklub.com'
143+
'https://atlantis.hacklub.com',
144+
'https://*.atlantis.hacklub.com'
145145
]
146146

147147
SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')
@@ -169,9 +169,9 @@
169169
USE_TZ = True
170170

171171
JAZZMIN_SETTINGS = {
172-
"site_title": "Layered Supadmin",
173-
"site_header": "Layered Supadmin",
174-
"site_brand": "Layered",
172+
"site_title": "Atlantis Supadmin",
173+
"site_header": "Atlantis Supadmin",
174+
"site_brand": "Atlantis",
175175
"welcome_sign": "log in you naughty naughty",
176176
"copyright": "Hack Club",
177177
"search_model": "auth.User",
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
URL configuration for layered project.
2+
URL configuration for atlantis project.
33
44
The `urlpatterns` list routes URLs to views. For more information please see:
55
https://docs.djangoproject.com/en/6.0/topics/http/urls/
@@ -18,6 +18,6 @@
1818
from django.urls import path, include
1919

2020
urlpatterns = [
21-
path("", include("layered_site.urls")),
21+
path("", include("atlantis_site.urls")),
2222
path('admin/', admin.site.urls)
2323
]
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
WSGI config for layered project.
2+
WSGI config for atlantis project.
33
44
It exposes the WSGI callable as a module-level variable named ``application``.
55
@@ -11,6 +11,6 @@
1111

1212
from django.core.wsgi import get_wsgi_application
1313

14-
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'layered.settings')
14+
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'atlantis.settings')
1515

1616
application = get_wsgi_application()

0 commit comments

Comments
 (0)