All Projects → Axtell → Axtell

Axtell / Axtell

Licence: other
An improved user experience for competitive programming

Programming Languages

javascript
184084 projects - #8 most used programming language
python
139335 projects - #7 most used programming language
CSS
56736 projects
HTML
75241 projects
shell
77523 projects
Mako
254 projects

Labels

Projects that are alternatives of or similar to Axtell

aya
Pocket sized programs
Stars: ✭ 39 (+50%)
Mutual labels:  code-golf
Vyxal
A golfing language that has aspects of traditional programming languages - terse, elegant, readable.
Stars: ✭ 134 (+415.38%)
Mutual labels:  code-golf
PYKE
Indev golfing language
Stars: ✭ 18 (-30.77%)
Mutual labels:  code-golf
ioccc
My IOCCC submissions and practice.
Stars: ✭ 82 (+215.38%)
Mutual labels:  code-golf
Creepycodecollection
A Nonsense Collection of Disgusting Codes
Stars: ✭ 2,206 (+8384.62%)
Mutual labels:  code-golf
paradoc
GolfScript/CJam-inspired stack-based programming language that can be golfed or written literately*
Stars: ✭ 71 (+173.08%)
Mutual labels:  code-golf
Seriously
A golfing language that is probably terrible
Stars: ✭ 78 (+200%)
Mutual labels:  code-golf
pip
Pip: an imperative code-golf language
Stars: ✭ 22 (-15.38%)
Mutual labels:  code-golf

Axtell

An improved user experience for competitive programming.

Build Status codecov

Project Structure

An overview of the Axtell project and key components:

  • Axtell backend (app/)
    • Database models (app/models)
    • Controllers to manage interaction logic (app/controllers)
    • Routes (which talk to controllers) to serve and parse requests (app/routes)
    • Socket routes (app/socket_routes)
    • Session management code (app/session)
    • Celery tasks (app/tasks). We offload more expensive tasks to Celery which manages worker processes, this includes things like the markdown renderer.
    • Instances (app/instances) global object instances e.g. database or redis instances are located here
    • Helpers (app/helpers). Various functions in classes that can be used generically to do things.
      • OAuth callbacks (app/helpers/oauth). These are a part of OAuth login and return a profile for a new OAuth user
      • Macros (app/helpers/macros). These macros are available to Jinja2 templates
  • JavaScripts source (js/). This is setup similar to the Axtell backend.
    • Controllers to manage interaction logic with HTML (js/controllers)
    • Templates are JavaScript components (js/templates)
    • Models are your typical models (js/models). Important modules:
      • Request is a subclassable abstract class that centralizes all requests and handles CSRF etc.
      • PagedRequest is a subclass of Request to interact with pages
      • Data manages structured information associated with a page
      • Auth manages the authorization instance of a user
    • js/helpers/ErrorManager centralizes ErrorManagement and sends detailed reports to bugsnag along with pretty-printing reporting.
  • SCSS source (scss/)
  • HTML Templates (templates/) which are Jinja2

You can build Axtell's JavaScript documentation using npm run docs which will create the docs-js directory. Additionally you may reference the hosted API documentation

Installing Axtell

1. Prereqs

To get started make sure you have the following installed:

  • Python 3.6 or higher
  • MySQL (we recommend 8.0)
  • Probably Ruby (not 100% sure if actually required)
  • node/npm (Node.js 8 or higher is recommended)
  • Redis
  • memcached
  • OpenSSL
    • macOS users should run brew install openssl && brew link openssl --force

and the plugins (may be missing certain see requirements.txt for all):

  • Node.js packages (npm install)
  • All plugins in requirements.txt (pip install -r requirements.txt)

additionally you need to know:

  • MySQL username + password
  • Redis password
  • A few keys, etc for login. see below

2. Setup

  1. Copy config.default.py to config.py
  2. Fill in all the values as possible in the config.py. See below for instructions
  3. Set secret_skey to some random string. It doesn't matter what it is as long as it is random.

If you look within config.py, you need to fill in various API keys from Google, StackExchange, etc. Additionally in the configuration file you'll see various other fields you can modify.

(Optional) Recommended: Using UWSGI

Running Axtell from flask is possible— it's fine for development purposes, however for any somewhat production related system it's recommended to run it through UWSGI (and through NGINX is even better). Axtell has an axtell.default.ini, copy this to axtell.ini and fill the default values. That contains everything to start a properly configured UWSGI setup of Axtell.

(Optional) Setup HTTPS

It's highly reccomend to run Axtell under a reverse proxy such as Nginx however for HTTPS, in the root directory of the Axtell instance, place a server.crt and server.key file.

(Optional) Setting up Safari Push Notifications

To integrate with iOS and macOS's Push Notification service you'll first need an Apple Developer Account. In the portal you'll need to create a Web Push Notification ID. Place this token in the notifications.web_apn_id field in the configuration file.

Additionally the certificate (.p12) should be placed in the cwd of the server and (i.e. the root) named 'webapn.p12'. The password should be placed in a text file 'webapn.passsword' (will be trimmed).

You may need to clear your web-servers/reverse-proxy's cache since the /static/webapn routes qualify for caching (and they should). The app will automatically generate the bundles etc. as applicable.

(Optional) Setting up APNS

If you're setting up Safari Push Notifications, for those notifications to be actually delivered you'll need to setup APNS. To integrate with APNS you'll need to enter your Apple Developer Team ID in the config.py under notifications. Additionally you need to place your APN key in the root directory of Axtell (i.e. execution CWD) as apns.p8. Fort hsi provide the apns_key_id and apns_team_id and web_apn_id under notifications

(Optional) Setting up Web Push

Web Push is a protocol for push notifications that extends to Chrome, Firefox, and potentially more browsers. This uses service workers to dispatch notifications. To setup Web Push you need to generate a VAPID key pair (same as a EC NIST P-256 key pair) which can be done by running these OpenSSL commands:

openssl ecparam -name prime256v1 -genkey -noout -out webpush-private.pem
openssl ec -in webpush-private.pem -pubout -out webpush-public.pem

These files are searched for in the root directory and are used for encrypting things such as Web Push messages.

Additionally you will need to supply the notifications.support_email config field.

Note: They are a finite amount of Web Push devices registerable per user, you can configure this using notifications.max_push_devices in the config

(Optional) Search

Axtell search uses Algolia to index and search Axtell content. Axtell will index stale/unindexed data in these conditions:

  • The server starts
  • Every 2 minutes

Axtell's Algolia worker will scan the database for unindexed items and index them in Algolia. To use Algolia you will need to provide the parameters in auth.algolia. Do NOT provide an admin key as a search key as this will allow unconditional client access to your Algolia application.

Additionally the auth.algolia.prefix is prefixed to all index names. For a production, it's recommended to use prod, and for development to use dev. This can be anything; if this is empty then no prefix is used but this is not recommended.

(Optional) Bug Tracking

Axtell uses Bugsnag to track bugs. To setup bugsnag, first setup the API keys in auth.bugsnag in the config. To deploy JavaScript source maps to bugsnag, run:

for js_source in static/lib/axtell~*.js; do
  JS_SOURCES+=($PROTOCOL://$HOSTNAME/$js_source@$js_source)
done

echo "SUBMITTING FRONTEND BUGSNAG SOURCEMAP..."
http -f POST https://upload.bugsnag.com/ \
  apiKey=$BUGSNAG_FRONTEND_API_KEY \
  appVersion=$(git rev-parse @) \
  minifiedUrl=$PROTOCOL://$HOSTNAME/static/lib/axtell.main.js \
  minifiedFile@static/lib/axtell.main.js \
  sourceMap@static/lib/axtell.main.js.map \
  "${JS_SOURCES[@]}"

and pass PROTOCOL, HOSTNAME and BUGSNAG_FRONTEND_API_KEY as parameters.

(Optional) Google

To use Google Sign in and/or analytics setup google using:

  1. Create a Google Cloud project (create a GC project)
  2. Setup the OAuth consent screen
  3. Create an OAuth client ID
    • You can leave the 'Authorized redirect URLs' empty.\
  4. Add this client ID to auth.google.client-id

(Optional) Google Analytics

To do this you must follow Google setup instructions. To track pageviews etc. you can setup Google Analytics. Google analytics are used for the displayed view counts etc.

  1. Setup Google Analytics.
  2. Setup, in auth.google, the analytics-id to the property ID and view-id to the view ID.
  3. Login to the Google Cloud project created.
  4. Navigate to the Analytics API registration page
  5. Now, create an Analytics Service Account
    • Set the role to 'Viewer'
    • If prompted download the key as JSON
  6. Next, enable the GA API
  7. Add the file to the root project directory as ga.json
  8. Take the email address from the service account you created earlier and add it to the analytics project

The privacy settings Axtell uses are:

Property Settings
Field Value
Advertising Features > Enable Demographics and Interest Reports Off
Tracking Info
Field Value
Data Collection > Remarketing Off
Data Collection > Advertising Reporting Features Off
Data Collection > Advertising Reporting Features Off
Filters
Name Type Option Field Value
Post Preview Custom Search and Replace Request URI Replace /post/preview.* with /post/preview not case sensitive
Challenge Custom Search and Replace Request URI Replace ^/post/([0-9]+).*$ with /post/\1 not case sensitive

3. Build

You will need to build the assets (CSS and JS) before running Axtell. You can do this using:

Production build:

./build_all.sh

Debug build. This will not minify and will also enable a "watcher" program (rebuilds assets every time you make a change):

./build_all_debug.sh

4. Run

Make sure that your Redis server is running!

Production run:

$ celery multi start w1 -A celery_server
$ ./run.py

Development run:

$ celery multi start w1 -A celery_server
$ ./debug.sh

or if using uWSGI (you probably want to run uwsgi as a daemon):

$ uwsgi --ini axtell.ini

uWSGI

Some notes for uWSGI configurations is that the following config options are needed:

[uwsgi]
enable-threads = true
wsgi-disable-file-wrapper = true

(this is reflected in the default uWSGI config already).

DB Migrations with Alembic

If any changes are made to the DB in ORM the DB will need to be migrated to new columns etc. To setup alembic use:

python3 ./alembic_setup.py

Now run alembic:

alembic revision --autogenerate
alembic upgrade head

If you encounter any issues where the DB goes out of sync with alembic try running:

alembic stamp head

alternatively if the alembic loses track of versions you may need to run:

mysql -u MYSQL_USERNAME -p DB_NAME -e "DROP TABLE alembic_version;"

Note: All alembic commands may need to be prefixed with PYTHONPATH=$(pwd) if you encounter directory issues.

Building Documentation

After installing the dependencies. You can build the documentation using:

npx esdoc

Run Tests

If you wish to run tests locally you can run:

python -m unittest discover tests -vf --locals

Special Thanks

Axtell is able to run thanks to the generosity of the following companies:

Algolia  Bugsnag

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].