Skip to content

Commit

Permalink
WIP 8
Browse files Browse the repository at this point in the history
  • Loading branch information
vCra committed Apr 2, 2019
1 parent be0dac4 commit 1b4208a
Show file tree
Hide file tree
Showing 36 changed files with 1,159 additions and 721 deletions.
8 changes: 0 additions & 8 deletions config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,14 +201,6 @@

DJANGO_TABLES2_TEMPLATE = 'django_tables2/bootstrap4.html'


# FIXTURES
# ------------------------------------------------------------------------------
# https://docs.djangoproject.com/en/dev/ref/settings/#fixture-dirs
FIXTURE_DIRS = (
str(APPS_DIR.path('fixtures')),
)

# EMAIL
# ------------------------------------------------------------------------------
# https://docs.djangoproject.com/en/dev/ref/settings/#email-backend
Expand Down
11 changes: 1 addition & 10 deletions config/settings/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,13 +130,4 @@
},
}

MOOSHAK_ENDPOINT = "http://localhost:8080/mooshak/api/"
MOOSHAK_CONTEST = "ToPAS14"
MOOSHAK_USERNAME = "team"
MOOSHAK_PASSWORD = "team"

MOOSHAK_SUPPORTED_LANGUAGES = [
("c", "c", "c_cpp"),
("java", "java", "java"),
("python", "py", "python"),
]
JUDGE0_ENDPOINT = "https://api.judge0.com"
6 changes: 2 additions & 4 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,15 @@ var pathsConfig = function (appName) {

return {
bootstrapSass: vendorsRoot + '/bootstrap/scss',
coreuiSass: vendorsRoot + '/@coreui/coreui/scss',
font_awesomeSass: vendorsRoot + '/font-awesome/scss',
font_awesomeSass: vendorsRoot + '/@fortawesome/fontawesome-free/scss',
vendorsJs: [
vendorsRoot + 'jquery/dist/jquery.js',
vendorsRoot + 'popper.js/dist/umd/popper.js',
vendorsRoot + 'toastr/build/toastr.min.js',
vendorsRoot + 'bootstrap/dist/js/bootstrap.js',
],
vendorsFonts: [
vendorsRoot + 'font-awesome/fonts/*',
vendorsRoot + '@fortawesome/fontawesome-free/webfonts/*',
],
app: this.app,
templates: this.app + '/templates',
Expand All @@ -56,7 +55,6 @@ gulp.task('styles', function () {
.pipe(sass({
includePaths: [
paths.bootstrapSass,
paths.coreuiSass,
paths.font_awesomeSass,
paths.sass
]
Expand Down
Loading

0 comments on commit 1b4208a

Please sign in to comment.