Skip to content

Commit 4d42f51

Browse files
committed
Rename to futurecoder
1 parent eb205b9 commit 4d42f51

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# `python_init`
1+
# `futurecoder`
22

33
This is a platform/course for complete beginners to teach themselves programming, specifically in Python. Currently it's very much a work in progress - please consider [contributing](#contributing)!
44

5-
You can try a demo here: https://python-init.herokuapp.com/
5+
You can try a demo here: https://futurecoder.herokuapp.com/
66

77
## Features
88

@@ -38,13 +38,13 @@ and [Python Tutor](http://pythontutor.com/):
3838

3939
While most of the groundwork is in place, there is a lot to do to make this a complete course ready for users. All kinds of help are needed and greatly appreciated.
4040

41-
For starters, try using the platform to see what it's like. You can go straight to the [demo site](https://python-init.herokuapp.com/) and quickly sign up for an account. See the [Controls](#controls) section below if you're not sure how to use it. Please give feedback about anything that's confusing, could be done better, or doesn't work.
41+
For starters, try using the platform to see what it's like. You can go straight to the [demo site](https://futurecoder.herokuapp.com/) and quickly sign up for an account. See the [Controls](#controls) section below if you're not sure how to use it. Please give feedback about anything that's confusing, could be done better, or doesn't work.
4242

4343
In the event that the demo site gets more attention than it can handle, try [running the code locally with the instructions below](#running-locally).
4444

45-
The easiest way to contribute concretely is to write learning material for the course. This doesn't require any expertise beyond knowing how Python works. See [this issue](https://github.com/alexmojaki/python_init/issues/23) for some guidance and join the conversation!
45+
The easiest way to contribute concretely is to write learning material for the course. This doesn't require any expertise beyond knowing how Python works. See [this issue](https://github.com/alexmojaki/futurecoder/issues/23) for some guidance and join the conversation!
4646

47-
Beyond that, there's plenty of coding work to do on the platform, including frontend, backend, and devops work. See the [list of issues](https://github.com/alexmojaki/python_init/issues) for some ideas.
47+
Beyond that, there's plenty of coding work to do on the platform, including frontend, backend, and devops work. See the [list of issues](https://github.com/alexmojaki/futurecoder/issues) for some ideas.
4848

4949
## Running locally
5050

app.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"repository": "https://github.com/alexmojaki/python_init",
2+
"repository": "https://github.com/alexmojaki/futurecoder",
33
"env": {
44
"SEPARATE_WORKER_PROCESS": "True",
55
"DEBUG": "False"

backend/main/templates/home.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
{% block base_body %}
44
<div class="container">
5-
<h1>Welcome to <code>python_init</code>!</h1>
5+
<h1>Welcome to <code>futurecoder</code>!</h1>
66

77
<p>
88
This is a free open source platform/course for complete beginners to teach themselves programming,
@@ -32,7 +32,7 @@ <h1>Welcome to <code>python_init</code>!</h1>
3232
But please share this with people who are interested in providing free education
3333
and contributing to open source software!
3434
Learn more about the project in the
35-
<a href="https://github.com/alexmojaki/python_init">GitHub code repository</a>.
35+
<a href="https://github.com/alexmojaki/futurecoder">GitHub code repository</a>.
3636
</p>
3737

3838
<h3><a href="/course/">Go to the course</a></h3>

backend/main/views.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ def submit_feedback(self, title, description, state):
240240
"""
241241

242242
r = requests.post(
243-
'https://api.github.com/repos/alexmojaki/python_init/issues',
243+
'https://api.github.com/repos/alexmojaki/futurecoder/issues',
244244
json={'title': title,
245245
'body': body,
246246
'labels': ['user', 'bug']},

docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ volumes:
55

66
services:
77
web:
8-
image: python-init
8+
image: futurecoder
99
build: .
1010
ports:
1111
- 3000:3000
@@ -18,7 +18,7 @@ services:
1818
stdin_open: true
1919
tty: true
2020
master:
21-
image: python-init
21+
image: futurecoder
2222
build: .
2323
env_file: .env
2424
environment:

0 commit comments

Comments
 (0)